/* =============================================================
   FlashCab · Corporate Clean
   styles.css — all presentation (the "look" of the View)
   -------------------------------------------------------------
   Design tokens live in :root. Change a token once and it
   propagates everywhere. No inline styles in the HTML.
============================================================= */

:root {
  /* brand */
  --accent:        #1D4ED8;
  --accent-soft:   #7DA2F5;
  --ink:           #0F172A;

  /* text */
  --text-strong:   #0F172A;
  --text:          #334155;
  --text-muted:    #475569;
  --text-soft:     #64748B;
  --text-faint:    #94A3B8;

  /* surfaces & lines */
  --border:        #E8EDF4;
  --border-strong: #CBD5E1;
  --tint:          #F8FAFC;   /* section wash */
  --tint-blue:     #EFF4FE;   /* badge / icon chip */
  --tint-card:     #F1F5FB;   /* car image plate */

  --star:          #F5A623;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --shell: 1280px;
  --gutter: 44px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }

/* Prevent elastic overscroll bounce past the header (top)
   and footer (bottom) on mac trackpads & mobile browsers. */
html, body { overscroll-behavior: none; }

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text-strong);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

/* Layout shell — the site is centered at a max width */
.shell {
  max-width: var(--shell);
  margin: 0 auto;
  width: 100%;
}

/* Buttons ------------------------------------------------- */
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 26px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { box-shadow: 0 10px 24px -12px rgba(29,78,216,.7); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--outline { border-color: var(--border-strong); color: var(--ink); background: #fff; }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--sm { padding: 11px 18px; font-size: 13px; }
.btn--block { display: block; text-align: center; }

/* Section helpers ---------------------------------------- */
.section { padding: 70px var(--gutter); }
.section--tint { background: var(--tint); }
.section-head { text-align: center; margin-bottom: 40px; }
.kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 0;
}

/* Nav ----------------------------------------------------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
}
/* .nav is width-limited by the .shell class, so its own background/border
   don't reach the viewport edges. This pseudo-element spans the full
   viewport width (but only the header's own height) to fill the gap. */
.nav::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: -1;
}
.nav__logo-link { display: inline-flex; text-decoration: none; }
.nav__logo { height: 40px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a { text-decoration: none; }
.nav__links a:hover { color: var(--accent); }
.nav__actions { display: flex; gap: 10px; }

/* Hero ---------------------------------------------------- */
.hero {
  background: linear-gradient(180deg, var(--tint), #fff);
  padding: 72px var(--gutter) 64px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tint-blue);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero__title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.hero__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 480px;
  margin: 0 0 30px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -20px rgba(15,23,42,.18);
  padding: 26px;
}

/* Trust cards (overlap the hero base) --------------------- */
.trust { padding: 0 var(--gutter); margin-top: 40px; position: relative; z-index: 2; }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px -16px rgba(15,23,42,.2);
  padding: 22px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.trust__card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 32px -16px rgba(29,78,216,.35);
}
.trust__card:hover .trust__icon {
  background: var(--accent);
  color: #fff;
}
.trust__icon {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  background: var(--tint-blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 14px;
  transition: background .18s ease, color .18s ease;
}
.trust__title { font-size: 16px; font-weight: 700; }
.trust__note { font-size: 13px; color: var(--text-soft); margin-top: 3px; }

/* About --------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  padding: 74px var(--gutter);
}
.about__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  order: -1;          /* image on LEFT, text on RIGHT */
}
.about__title { font-size: 38px; font-weight: 800; line-height: 1.12; letter-spacing: -0.015em; margin: 0 0 18px; }
.about__body { font-size: 16px; line-height: 1.65; color: var(--text-muted); margin: 0 0 22px; }
.checklist { display: flex; flex-direction: column; gap: 12px; list-style: none; margin: 0; padding: 0; }
.checklist li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink); }
.checklist li::before { content: "✓"; color: var(--accent); font-weight: 800; }

/* Fleet --------------------------------------------------- */
.fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.car {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.car:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -18px rgba(15,23,42,.35);
}
.car--featured { border: 2px solid var(--accent); }
.car--selected {
  box-shadow: 0 0 0 3px var(--accent), 0 18px 36px -18px rgba(29,78,216,.35);
}
.car--selected::after {
  content: "✓";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px -4px rgba(29,78,216,.6);
}
.car--selected .btn--dark { background: var(--accent); }
.car--selected:hover {
  box-shadow: 0 0 0 3px var(--accent), 0 18px 36px -18px rgba(29,78,216,.45);
}
.car__flag {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 5px 10px; border-radius: 20px;
}
.car__plate {
  background: var(--tint-card);
  padding: 24px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.car__plate img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.car__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.car__row { display: flex; align-items: baseline; justify-content: space-between; }
.car__name { font-size: 22px; font-weight: 800; }
.car__price { font-size: 24px; font-weight: 800; color: var(--accent); }
.car__price small { font-size: 13px; color: var(--text-faint); font-weight: 800; }
.car__spec { font-size: 13px; color: var(--text-soft); margin: 6px 0 18px; flex: 1; }

/* Routes -------------------------------------------------- */
.routes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.route {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.route:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 14px 28px -16px rgba(29,78,216,.35);
}
.route__name { font-size: 18px; font-weight: 700; }
.route__note { font-size: 13px; color: var(--text-soft); margin-top: 6px; }
.route__go {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 14px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .18s ease, transform .18s ease;
}
.route:hover .route__go { opacity: 1; transform: translateX(0); }

/* Testimonials -------------------------------------------- */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.review:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 14px 28px -16px rgba(29,78,216,.35);
}
.review__go {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 14px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .18s ease, transform .18s ease;
}
.review:hover .review__go { opacity: 1; transform: translateX(0); }
.review__stars { color: var(--star); margin-bottom: 12px; }
.review__quote { font-size: 15px; line-height: 1.6; color: var(--text); margin: 0 0 16px; }
.review__author { font-size: 13px; font-weight: 700; }

/* CTA band ------------------------------------------------ */
.cta { padding: 70px var(--gutter); }
.cta__band {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 54px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
}
.cta__kicker { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 14px; }
.cta__title { font-size: 36px; font-weight: 800; letter-spacing: -0.015em; margin: 0; }
.cta__actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.cta__actions .btn--outline { color: #fff; border-color: var(--text-muted); background: transparent; }
.cta__actions .btn--outline:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  box-shadow: 0 10px 24px -12px rgba(255,255,255,.35);
}

/* Page hero (inner pages) ---------------------------------- */
.page-hero {
  background: linear-gradient(180deg, var(--tint), #fff);
  padding: 64px var(--gutter) 48px;
  text-align: center;
}
.page-hero__title {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 auto 16px;
  max-width: 720px;
}
.page-hero__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto;
}

/* Services (alternating feature rows) ---------------------- */
.svc-list { padding: 10px var(--gutter) 40px; }
.svc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.svc:last-child { border-bottom: 0; }
.svc__media {
  background: var(--tint-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.svc--flip .svc__media { order: 2; }
.svc__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.svc__num {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  background: var(--tint-blue);
  border-radius: 20px;
  padding: 5px 12px;
}
.svc__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.svc__title { font-size: 30px; font-weight: 800; letter-spacing: -0.015em; line-height: 1.15; margin: 0 0 14px; }
.svc__desc { font-size: 16px; line-height: 1.65; color: var(--text-muted); margin: 0 0 20px; }
.svc__features { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 26px; padding: 0; list-style: none; }
.svc__features li {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 7px 14px;
}
.svc__features li::before { content: "✓ "; color: var(--accent); font-weight: 800; }

/* Pay Now page --------------------------------------------- */
.pay { padding: 30px var(--gutter) 30px; }
.pay__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.pay-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px -16px rgba(15,23,42,.2);
  padding: 30px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.pay-card__title { font-size: 19px; font-weight: 800; margin: 0; }
.pay-card__note { font-size: 13.5px; color: var(--text-soft); margin: 0; line-height: 1.55; }
.pay-card__qr { width: 210px; max-width: 100%; }
.pay-card__logo { height: 34px; width: auto; object-fit: contain; }
.pay-card__cards { max-height: 56px; width: auto; object-fit: contain; }
.pay-card .btn { margin-top: auto; }
.upi-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--tint-blue);
  border: 1px dashed var(--accent-soft);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
  word-break: break-all;
}
.upi-box button {
  border: 0;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  flex-shrink: 0;
}

/* Urgent contact band (above footer) ----------------------- */
.urgent {
  background: var(--ink);
  text-align: center;
  padding: 48px var(--gutter) 42px;
  border-bottom: 1px solid #1E293B;
}
.urgent__note { color: var(--text-faint); font-size: 17px; }
.urgent__phone {
  display: inline-block;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  text-decoration: none;
  margin: 10px 0 16px;
  transition: color .15s ease;
}
.urgent__phone:hover { color: var(--accent-soft); }
.urgent__loc {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.urgent__loc svg { width: 34px; height: 34px; fill: currentColor; transition: transform .18s ease, fill .18s ease; }
.urgent__loc:hover svg { transform: translateY(-3px); fill: var(--accent-soft); }
.urgent__loc:hover { color: var(--accent-soft); }
@media (max-width: 560px) { .urgent__phone { font-size: 32px; } }

/* Footer social buttons ------------------------------------ */
.social { display: flex; gap: 10px; margin-top: 18px; }
.social__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1E293B;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s ease, transform .18s ease;
}
.social__btn svg { width: 18px; height: 18px; fill: currentColor; }
.social__btn:hover { background: var(--accent); transform: translateY(-3px); }

/* Footer -------------------------------------------------- */
.footer {
  background: var(--ink);
  color: var(--text-faint);
  padding: 56px var(--gutter) 30px;
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1E293B;
}
.footer__logo-link { display: inline-block; text-decoration: none; }
.footer__logo { height: 40px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer__blurb { line-height: 1.65; margin: 0; }
.footer__heading { color: #fff; font-weight: 700; margin-bottom: 16px; }
.footer__list { display: flex; flex-direction: column; gap: 10px; list-style: none; margin: 0; padding: 0; }
.footer__list span { line-height: 1.5; }
.footer__list a {
  line-height: 1.5;
  text-decoration: none;
  color: var(--text-faint);
  width: fit-content;
  transition: color .15s ease, transform .15s ease;
}
.footer__list a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer__copy { padding-top: 22px; font-size: 13px; }

/* Route page: places to visit ------------------------------ */
.place {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.place:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 14px 28px -16px rgba(29,78,216,.35);
}
.place__img { width: 100%; height: 170px; object-fit: cover; }
.place__body { padding: 16px 18px; }
.place__name { font-size: 16px; font-weight: 700; color: var(--ink); }
.place__link { font-size: 13px; font-weight: 700; color: var(--accent); margin-top: 6px; }

/* Floating action buttons (WhatsApp + Call) ---------------- */
.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}
.fab__btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(15,23,42,.45);
  transition: transform .18s ease, box-shadow .18s ease;
}
.fab__btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 16px 32px -10px rgba(15,23,42,.5);
}
.fab__btn svg { width: 26px; height: 26px; fill: currentColor; }
.fab__btn--wa { background: #25D366; }
.fab__btn--call { background: var(--accent); }
@media (max-width: 560px) {
  .fab { right: 16px; bottom: 16px; }
  .fab__btn { width: 50px; height: 50px; }
}

/* Responsive --------------------------------------------- */
@media (max-width: 980px) {
  :root { --gutter: 24px; }
  .hero__grid, .about { grid-template-columns: 1fr; }
  .about__media { order: 0; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .fleet__grid, .reviews__grid { grid-template-columns: 1fr; }
  .routes__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__title { font-size: 40px; }
  .cta__band { flex-direction: column; align-items: flex-start; }
  .nav__links { display: none; }
  .svc { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
  .pay__grid { grid-template-columns: 1fr; }
  .svc--flip .svc__media { order: 0; }
  .svc__title { font-size: 26px; }
  .page-hero__title { font-size: 36px; }
}
@media (max-width: 560px) {
  .trust__grid, .routes__grid, .footer__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 34px; }
}

/* =============================================================
   SEO CONTENT SECTION
   Keyword-rich text block for search engine visibility.
   Visually subtle but fully readable — sits between the FAB
   and the urgent contact band.
============================================================= */
.seo-content {
  padding: 72px 0 64px;
  border-top: 1px solid var(--border);
}

.seo-content__intro {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.seo-content__h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-strong);
  margin-bottom: 16px;
  line-height: 1.25;
}

.seo-content__intro p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 12px;
}

.seo-content__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.seo-content__card {
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 28px 24px;
}

.seo-content__h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.seo-content__card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.seo-content__list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.seo-content__list li {
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
  padding-left: 4px;
}

.seo-content__list strong {
  color: var(--text-strong);
  font-weight: 600;
}

@media (max-width: 768px) {
  .seo-content__grid { grid-template-columns: 1fr; }
  .seo-content__h2 { font-size: 22px; }
  .seo-content { padding: 48px 0 40px; }
}

