/* ── TOKENS ── */
:root {
  --navy:   #032D6C;
  --blue:   #029EFC;
  --lblue:  #81D9FE;
  --soft:   #EAF6FF;
  --white:  #ffffff;
  --bg:     #f5f7fa;
  --muted:  #6b7280;
  --border: #e5e7eb;
  --radius: 16px;
  --shadow: 0 4px 32px rgba(3,45,108,0.11);
  --shadow-sm: 0 2px 12px rgba(3,45,108,0.07);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Poppins, sans-serif; background: var(--bg); color: #1a2233; -webkit-font-smoothing: antialiased; }
input, button, a { font-family: inherit; }
a { text-decoration: none; }

/* ══════════════════════════════════════
   TOPBAR  (desktop only)
══════════════════════════════════════ */
.topbar {
  display: none; /* hidden on mobile */
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.topbar-brand { display: flex; align-items: center; gap: 10px; }
.topbar-mascot { width: 38px; height: 38px; object-fit: contain; }
.topbar-name { font-size: 20px; font-weight: 800; color: var(--navy); }
.topbar-links { display: flex; gap: 28px; margin-left: 56px; flex-shrink: 0; }
.topbar-links a { font-size: 14px; font-weight: 600; color: var(--muted); transition: color .15s; }
.topbar-links a:hover { color: var(--blue); }

/* ══════════════════════════════════════
   LAYOUT  — mobile: single column stack
            desktop: two-column grid
══════════════════════════════════════ */
.hero-split {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}

/* ── BANNER BLOCK ── */
.hero-banner-block {
  background: var(--white);
  border-radius: 20px;
  padding: 22px 20px 20px;
  margin-top: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* Mobile brand row */
.mobile-brand {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.mascot-mob { width: 56px; height: 56px; object-fit: contain; filter: drop-shadow(0 4px 16px rgba(3,45,108,.15)); }
.mob-name { font-size: 22px; font-weight: 800; color: var(--navy); }
.mob-sub  { font-size: 12px; color: var(--muted); }

/* Banner image */
.hero-banner-frame {
  width: 100%; height: 210px; overflow: hidden;
  border-radius: 14px; margin-bottom: 18px;
  box-shadow: 0 4px 20px rgba(3,45,108,.10);
}
.hero-banner-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--banner-x) var(--banner-y);
  transform: scale(var(--banner-zoom));
  transform-origin: center;
  display: block;
}

/* Hero text */
.hero-h1 { font-size: 24px; font-weight: 800; line-height: 1.3; margin-bottom: 8px; color: var(--navy); }
.hero-accent { color: var(--blue); }
.hero-p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }

/* Trust pills */
.trust-row { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-pill {
  background: var(--soft);
  border: 1px solid rgba(2,158,252,.2);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px; font-weight: 600; color: var(--navy);
}

/* ── BOOKING PANEL ── */
.booking-panel {
  margin-top: 16px;
}
.booking-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
}
.bc-header {
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--border);
}
.bc-title { font-size: 20px; font-weight: 800; color: var(--navy); }
.bc-sub   { font-size: 13px; color: var(--muted); margin-top: 3px; }

/* ── SERVICES BLOCK ── */
.services-block {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  margin-top: 16px;
  margin-bottom: 90px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.sb-header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.sb-title { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.sb-view-all { font-size: 12px; font-weight: 700; color: var(--blue); }

/* Homepage photo tiles */
.sb-tile-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.sb-tile {
  position: relative;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.sb-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.sb-tile-grad { position: absolute; inset: 0; }
.sb-tile-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--blue); color: var(--white);
  font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px;
}
.sb-tile-info { position: relative; padding: 12px 14px; }
.sb-tile-name  { font-size: 15px; font-weight: 800; color: var(--white); }
.sb-tile-price { font-size: 12px; color: rgba(255,255,255,.8); margin-top: 2px; font-weight: 500; }

/* ══════════════════════════════════════
   WIZARD
══════════════════════════════════════ */
.wiz-wrap { padding: 20px 22px 22px; }

/* Step indicator */
.step-track { display: flex; align-items: center; gap: 0; margin-bottom: 22px; }
.step-node {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  background: var(--border); color: var(--muted);
  flex-shrink: 0; transition: background .25s, color .25s;
}
.step-node.done  { background: var(--blue); color: var(--white); }
.step-node.active{ background: var(--navy); color: var(--white); box-shadow: 0 0 0 4px rgba(2,158,252,.2); }
.step-line { flex: 1; height: 3px; background: var(--border); transition: background .25s; }
.step-line.done  { background: var(--blue); }

/* Step title */
.wiz-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.wiz-sub   { font-size: 13px; color: var(--muted); margin-bottom: 18px; }

/* ── Service pick ── */
.svc-pick-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.svc-pick {
  background: var(--soft); border: 2px solid transparent;
  border-radius: 14px; padding: 16px 8px; text-align: center;
  cursor: pointer; transition: border-color .18s, background .18s, transform .15s;
}
.svc-pick:hover { transform: translateY(-2px); }
.svc-pick img { width: 38px; height: 38px; }
.sp-name  { font-size: 12px; font-weight: 700; color: var(--navy); margin-top: 7px; }
.sp-price-row { display: flex; flex-direction: column; align-items: center; gap: 1px; margin-top: 4px; }
.sp-old   { font-size: 10px; color: var(--muted); text-decoration: line-through; line-height: 1.2; }
.sp-price { font-size: 12px; color: var(--blue); font-weight: 800; line-height: 1.2; }
.svc-pick.selected { border-color: var(--blue); background: #d6efff; }

/* ── Date scroll ── */
.date-scroll {
  display: flex; gap: 8px; overflow-x: auto;
  padding-bottom: 6px; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.date-scroll::-webkit-scrollbar { display: none; }
.date-chip {
  min-width: 56px; padding: 10px 6px; border-radius: 12px;
  border: 2px solid var(--border); background: var(--white);
  text-align: center; cursor: pointer; flex-shrink: 0;
  transition: border-color .18s, background .18s;
}
.dc-day { font-size: 10px; color: var(--muted); font-weight: 600; text-transform: uppercase; }
.dc-num { font-size: 20px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.dc-mon { font-size: 10px; color: var(--muted); }
.date-chip.selected { border-color: var(--blue); background: #d6efff; }
.date-chip.today .dc-day { color: var(--blue); }

/* ── Time grid ── */
.time-section-label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin: 18px 0 10px; }
.time-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.time-card {
  border: 2px solid var(--border); border-radius: 14px;
  padding: 14px 10px; text-align: center; cursor: pointer;
  background: var(--white); transition: border-color .18s, background .18s, transform .15s;
}
.time-card:hover { transform: translateY(-2px); }
.tc-icon  { font-size: 26px; margin-bottom: 5px; }
.tc-label { font-size: 13px; font-weight: 700; color: var(--navy); }
.tc-range { font-size: 11px; color: var(--muted); margin-top: 2px; }
.tc-fee   { font-size: 11px; color: var(--blue); font-weight: 600; margin-top: 5px; }
.time-card.selected { border-color: var(--blue); background: #d6efff; }

/* ── Payment ── */
.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pay-card {
  border: 2px solid var(--border); border-radius: 16px;
  padding: 20px 12px; text-align: center; cursor: pointer;
  background: var(--white); transition: border-color .18s, background .18s, transform .15s;
}
.pay-card:hover { transform: translateY(-2px); }
.pc-icon  { font-size: 32px; margin-bottom: 8px; }
.pc-label { font-size: 14px; font-weight: 700; color: var(--navy); }
.pc-desc  { font-size: 11px; color: var(--muted); margin-top: 4px; line-height: 1.4; }
.pay-card.selected { border-color: var(--blue); background: #d6efff; }

/* ── Details / Summary ── */
.summary-box {
  background: var(--soft); border-radius: 12px;
  padding: 14px 16px; margin-bottom: 18px;
  border: 1px solid rgba(2,158,252,.15);
}
.summary-row { display: flex; justify-content: space-between; font-size: 13px; padding: 4px 0; }
.summary-row + .summary-row { border-top: 1px solid rgba(3,45,108,.06); }
.summary-row .sr-label { color: var(--muted); }
.summary-row .sr-val   { font-weight: 600; color: var(--navy); }
.summary-total { font-size: 15px; font-weight: 800; color: var(--navy); }
.summary-total .sr-val { color: var(--blue); }

.field { margin-bottom: 13px; }
.field label { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 5px; }
.field input {
  width: 100%; border: 1.5px solid var(--border); border-radius: 10px;
  padding: 12px 14px; font-size: 14px; outline: none;
  transition: border-color .18s, box-shadow .18s;
  background: var(--white);
}
.field input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(2,158,252,.12); }

/* ── Done ── */
.wiz-done { text-align: center; padding: 36px 20px; }
.done-icon  { font-size: 60px; margin-bottom: 14px; }
.done-title { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.done-sub   { font-size: 14px; color: var(--muted); margin-bottom: 6px; line-height: 1.6; }
.done-id    { font-size: 12px; color: var(--blue); font-weight: 700; margin-bottom: 24px; }

/* ── Nav row ── */
.wiz-nav { display: flex; gap: 10px; margin-top: 18px; }

/* ── Buttons ── */
.btn-primary {
  background: linear-gradient(90deg, var(--navy), var(--blue));
  color: var(--white); border: none; border-radius: 12px;
  padding: 14px 20px; font-size: 15px; font-weight: 700;
  cursor: pointer; width: 100%; transition: opacity .15s, transform .12s;
  letter-spacing: .01em;
}
.btn-primary:hover  { opacity: .92; }
.btn-primary:active { transform: scale(.98); opacity: .85; }
.btn-primary:disabled { opacity: .6; cursor: not-allowed; }

.btn-outline {
  background: var(--white); color: var(--navy);
  border: 1.5px solid var(--border); border-radius: 12px;
  padding: 12px 16px; font-size: 14px; font-weight: 600;
  cursor: pointer; flex: 1; transition: border-color .15s, background .15s;
}
.btn-outline:hover  { border-color: var(--blue); background: var(--soft); }
.btn-outline:active { background: #d6efff; }

/* ══════════════════════════════════════
   BOTTOM NAV  (mobile only)
══════════════════════════════════════ */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--white); border-top: 1px solid var(--border);
  display: flex; padding: 8px 0 env(safe-area-inset-bottom, 8px);
  box-shadow: 0 -4px 20px rgba(3,45,108,.07);
}
.nav-btn {
  flex: 1; background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 10px; font-weight: 600; color: var(--muted);
  padding: 4px 0; transition: color .18s;
}
.nav-btn svg {
  width: 22px; height: 22px; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.nav-btn.active { color: var(--blue); }
.terms-link {
  max-width: 1200px; margin: 0 auto; padding: 18px 24px 100px;
  text-align: center; font-size: 11px; color: var(--muted);
}
.terms-link a { color: var(--navy); font-weight: 700; }
@media (min-width: 900px) {
  .terms-link { padding-bottom: 24px; }
}
.legal-page {
  max-width: 820px; margin: 32px auto 80px; padding: 28px 24px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; box-shadow: var(--shadow-sm);
}
.legal-page h1 { color: var(--navy); font-size: 30px; margin-bottom: 4px; }
.legal-page h2 { color: var(--navy); font-size: 18px; margin: 24px 0 7px; }
.legal-page p { color: #374151; font-size: 14px; line-height: 1.75; }
.legal-page a { color: var(--blue); }
.legal-updated { color: var(--muted) !important; font-size: 12px !important; }
.legal-offer {
  margin: 20px 0; padding: 14px 16px; border-radius: 12px;
  background: var(--soft); border: 1px solid rgba(2,158,252,.25);
  color: var(--navy); font-size: 13px; line-height: 1.6;
}
.legal-back { display: inline-block; margin-top: 24px; color: var(--white) !important; }
@media (max-width: 899px) {
  .legal-page { margin: 16px 12px 90px; padding: 22px 18px; }
  .legal-page h1 { font-size: 24px; }
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }
.fade-up { animation: fadeUp .28s ease both; }

/* ══════════════════════════════════════
   MOBILE APP-LOCK: no horizontal scroll,
   full-height, fixed viewport
══════════════════════════════════════ */
@media (max-width: 899px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
  }
  .hero-split {
    padding: 0 12px;
    overflow-x: hidden;
  }
  .wiz-wrap {
    padding: 16px 16px 20px;
  }
  .svc-pick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-banner-img {
    object-position: var(--banner-x-mobile) var(--banner-y-mobile);
    transform: scale(var(--banner-zoom-mobile));
  }
  .hero-banner-frame {
    height: 220px;
  }
}

/* ══════════════════════════════════════
   DESKTOP  ≥ 900px
   Left col: banner + services (sticky)
   Right col: booking wizard (sticky)
══════════════════════════════════════ */
@media (min-width: 900px) {
  .topbar { display: flex; }

  .hero-split {
    display: grid;
    grid-template-columns: 1fr 420px;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "banner  booking"
      "services booking"
      "contact booking";
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 32px 40px;
    gap: 28px;
    align-items: start;
  }

  .hero-banner-block {
    grid-area: banner;
    margin-top: 0;
    padding: 36px 36px 32px;
    overflow: hidden;
  }
  .hero-banner-frame {
    height: 300px;
    width: 100%;
  }
  .hero-h1 { font-size: 32px; }
  .hero-p  { font-size: 15px; }
  .mobile-brand { display: none; } /* topbar handles branding on desktop */

  .booking-panel {
    grid-area: booking;
    margin-top: 0;
    position: sticky;
    top: 88px;
    align-self: start;
  }

  .services-block {
    grid-area: services;
    margin-top: 0;
    margin-bottom: 0;
  }
  .sb-tile-grid { grid-template-columns: 1fr 1fr 1fr; }
  .sb-tile { height: 160px; }

  .bottom-nav { display: none; }
}

/* ══════════════════════════════════════
   WIZARD ADDITIONS
══════════════════════════════════════ */

/* Service pick — icon tiles (original style) */
.svc-pick-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.svc-pick {
  background: var(--soft); border: 2px solid transparent;
  border-radius: 14px; padding: 16px 8px; text-align: center;
  cursor: pointer; transition: border-color .18s, background .18s, transform .15s;
}
.svc-pick:hover { transform: translateY(-2px); }
.svc-pick img { width: 38px; height: 38px; }
.sp-name  { font-size: 12px; font-weight: 700; color: var(--navy); margin-top: 7px; }
.sp-price-row { display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 2px; }
.sp-old   { font-size: 11px; color: var(--muted); text-decoration: line-through; }
.sp-price { font-size: 12px; color: var(--blue); font-weight: 700; }
.svc-pick.selected { border-color: var(--blue); background: #d6efff; }

/* Vehicle cards */
.veh-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 4px; }
.veh-card {
  border: 2px solid var(--border); border-radius: 14px;
  padding: 16px 10px; text-align: center; cursor: pointer;
  background: var(--white); transition: border-color .18s, background .18s, transform .15s;
}
.veh-card:hover { transform: translateY(-2px); }
.veh-card.selected { border-color: var(--blue); background: #d6efff; }
.vc-icon  { font-size: 32px; margin-bottom: 6px; }
.vc-label { font-size: 13px; font-weight: 700; color: var(--navy); }
.vc-price-row { display: flex; flex-direction: column; align-items: center; gap: 1px; margin-top: 4px; }
.vc-price { font-size: 12px; font-weight: 800; color: var(--blue); }

/* Time card total */
.tc-total { font-size: 12px; font-weight: 800; color: var(--navy); margin-top: 4px; }

/* Phone flag input */
.phone-row { display: flex; gap: 8px; align-items: stretch; }
.phone-flag {
  display: flex; align-items: center; gap: 5px;
  background: var(--soft); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 0 12px;
  font-size: 13px; font-weight: 700; color: var(--navy);
  white-space: nowrap; flex-shrink: 0;
}
.phone-row input { flex: 1; }

/* Coupon box */
.coupon-box {
  background: var(--soft); border: 1.5px dashed rgba(2,158,252,.4);
  border-radius: 12px; padding: 14px 16px; margin: 14px 0;
}
.coupon-label { font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.coupon-row { display: flex; gap: 8px; flex-wrap: wrap; }
.coupon-row input {
  flex: 1; min-width: 0; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 9px 12px; font-size: 13px; font-family: inherit; outline: none;
  text-transform: uppercase;
}
.coupon-row input:focus { border-color: var(--blue); }
.btn-coupon {
  background: var(--navy); color: var(--white); border: none;
  border-radius: 8px; padding: 9px 16px; font-size: 13px; font-weight: 700;
  cursor: pointer; font-family: inherit; flex-shrink: 0;
}
.coupon-applied { font-size: 13px; font-weight: 600; color: #065f46; }
.coupon-msg { font-size: 12px; margin-top: 6px; }
.coupon-msg.ok  { color: #065f46; }
.coupon-msg.err { color: #dc2626; }

/* Summary saving row */
.summary-saving .sr-val { color: #059669; }
.summary-slash { text-decoration: line-through; color: var(--muted) !important; font-weight: 400 !important; }

/* Gift teaser on step track */
.step-track { flex-wrap: wrap; }
.gift-teaser {
  width: 100%; margin-top: 10px;
  background: linear-gradient(90deg,#f59e0b,#d97706);
  border-radius: 10px; padding: 8px 14px;
  font-size: 12px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  opacity: .75; transition: opacity .3s, transform .3s;
  box-shadow: 0 2px 10px rgba(217,119,6,.45);
  text-shadow: 0 1px 2px rgba(0,0,0,.18);
}
.gift-teaser.active { opacity: 1; transform: scale(1.02); }
.gt-sub { font-size: 11px; font-weight: 600; opacity: 1; }

/* Gift claim box */
.gift-claim-box {
  background: linear-gradient(135deg,#fef3c7,#fde68a);
  border: 1.5px solid #fbbf24; border-radius: 14px;
  padding: 14px 16px; margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.gcb-icon { font-size: 32px; flex-shrink: 0; }
.gcb-text { display: flex; flex-direction: column; gap: 2px; }
.gcb-text strong { font-size: 13px; font-weight: 800; color: #92400e; }
.gcb-text span   { font-size: 12px; color: #b45309; }

/* Done screen */
.wiz-done { text-align: center; padding: 24px 16px 20px; }
.done-anim { font-size: 56px; margin-bottom: 10px; }
.done-title { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.done-id { font-size: 13px; color: var(--blue); font-weight: 700; margin-bottom: 16px; }
.done-details {
  background: var(--soft); border-radius: 12px; padding: 12px 16px;
  margin-bottom: 16px; text-align: left;
}
.dd-row { display: flex; justify-content: space-between; font-size: 13px; padding: 5px 0; border-bottom: 1px solid rgba(3,45,108,.06); }
.dd-row:last-child { border-bottom: none; }
.dd-row span { color: var(--muted); }
.done-gift {
  background: linear-gradient(135deg,#fef3c7,#fde68a);
  border: 1.5px solid #fbbf24; border-radius: 14px;
  padding: 16px; font-size: 13px; color: #92400e;
  margin-bottom: 14px; text-align: center; line-height: 1.6;
}
.wiz-done .btn-primary { margin-bottom: 10px; }
.wiz-done .btn-outline { width: 100%; }

/* ══════════════════════════════════════
   MY BOOKINGS PANEL
══════════════════════════════════════ */
.mb-panel {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(3,45,108,.45);
  display: flex; align-items: flex-end; justify-content: center;
  backdrop-filter: blur(3px);
}
.mb-sheet {
  background: var(--white);
  border-radius: 24px 24px 0 0;
  padding: 28px 24px 40px;
  width: 100%; max-width: 480px;
  max-height: 88vh; overflow-y: auto;
  position: relative;
  animation: slideUp .3s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: none; } }
.mb-close {
  position: absolute; top: 16px; right: 18px;
  background: var(--soft); border: none; border-radius: 50%;
  width: 32px; height: 32px; font-size: 14px; cursor: pointer;
  color: var(--navy); font-weight: 700;
}
.mb-title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.mb-sub   { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.mb-err   { font-size: 12px; color: #dc2626; margin-top: 8px; min-height: 18px; }
.mb-empty { text-align: center; padding: 24px 0; font-size: 14px; color: var(--muted); }

/* PIN inputs */
.pin-row {
  display: flex; gap: 12px; justify-content: center;
  margin-bottom: 20px;
}
.pin-input {
  width: 56px; height: 64px;
  border: 2px solid var(--border); border-radius: 14px;
  font-size: 28px; font-weight: 800; text-align: center;
  color: var(--navy); outline: none;
  transition: border-color .18s, box-shadow .18s;
  font-family: inherit;
}
.pin-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(2,158,252,.15);
}

/* Booking cards */
.mb-card {
  border: 1.5px solid var(--border); border-radius: 14px;
  padding: 14px 16px; margin-bottom: 10px;
  transition: border-color .18s;
}
.mb-card:hover { border-color: var(--blue); }
.mb-card-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; margin-bottom: 8px;
}
.mb-card-svc { font-size: 14px; font-weight: 700; color: var(--navy); }
.mb-card-veh { font-size: 12px; color: var(--muted); margin-top: 2px; }
.mb-card-bot {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--muted);
  border-top: 1px solid var(--border); padding-top: 8px;
}
.mb-card-id { font-weight: 700; color: var(--blue); }

/* Status badges */
.mb-badge {
  font-size: 10px; font-weight: 700; padding: 3px 10px;
  border-radius: 999px; white-space: nowrap; flex-shrink: 0;
}
.mb-pending   { background: #fef3c7; color: #92400e; }
.mb-confirmed { background: #d1fae5; color: #065f46; }
.mb-cancelled { background: #fee2e2; color: #991b1b; }

/* ══════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════ */
.faq-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 40px 16px 100px;
}
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-title {
  font-size: 20px; font-weight: 800; color: var(--navy);
  margin-bottom: 20px; text-align: center;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1.5px solid var(--border); border-radius: 14px;
  overflow: hidden; background: var(--white);
  transition: border-color .18s;
}
.faq-item[open] { border-color: var(--blue); }
.faq-item summary {
  padding: 16px 18px; font-size: 14px; font-weight: 700;
  color: var(--navy); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-item summary::after { content: '+'; font-size: 18px; color: var(--blue); flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 18px 16px; font-size: 13px; color: var(--muted); line-height: 1.7;
}

/* Homepage services photo grid */
.sb-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sb-photo-card {
  position: relative;
  height: 170px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.sb-photo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.sb-photo-overlay {
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
  opacity: 0.78;
}
.sb-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,0.58) 100%);
  pointer-events: none;
}
.sb-photo-content {
  position: relative;
  z-index: 1;
  padding: 12px 14px;
  width: 100%;
}
.sb-photo-name  { font-size: 15px; font-weight: 800; color: #fff; line-height: 1.2; }
.sb-photo-price-row { display: flex; align-items: center; gap: 6px; margin-top: 3px; }
.sb-photo-old   { font-size: 11px; color: rgba(255,255,255,.65); text-decoration: line-through; }
.sb-photo-price { font-size: 15px; font-weight: 800; color: var(--lblue); }
.sb-photo-desc  { font-size: 11px; color: rgba(255,255,255,.78); margin-top: 3px; line-height: 1.3; }
@media (min-width: 900px) {
  .sb-photo-grid { grid-template-columns: repeat(4, 1fr); }
  .sb-photo-card { height: 200px; }
  .faq-section { padding-bottom: 60px; }
}

/* ══════════════════════════════════════
   CONTACT BLOCK
══════════════════════════════════════ */
.contact-block {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  margin-top: 16px;
  margin-bottom: 90px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-inner {
  display: flex;
  gap: 16px;
  align-items: stretch;
  flex-wrap: wrap;
}
.contact-info { flex: 1; min-width: 180px; display: flex; flex-direction: column; gap: 2px; }
.contact-title { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.contact-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--navy); font-weight: 600;
  padding: 10px 12px; border-radius: 12px;
  text-decoration: none; background: var(--soft);
  transition: background .15s;
  margin-bottom: 8px;
}
.contact-row:hover { background: #d6efff; }
.contact-icon { font-size: 18px; flex-shrink: 0; }
.wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: #fff;
  border-radius: 12px; padding: 12px 18px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; margin-top: 4px;
  transition: opacity .15s;
}
.wa-btn:hover { opacity: .88; }
.contact-map-thumb {
  position: relative;
  flex: 1;
  min-width: 160px;
  min-height: 160px;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  border: 1px solid var(--border);
  text-decoration: none;
  cursor: pointer;
}
.contact-map-thumb iframe { width: 100%; height: 100%; min-height: 160px; display: block; border: 0; }
.map-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(3,45,108,.82); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 8px; text-align: center;
  pointer-events: none;
}
@media (min-width: 900px) {
  .contact-block {
    grid-area: contact;
    margin-bottom: 0;
  }
  .contact-map-thumb { min-height: 180px; }
  .contact-inner { flex-wrap: nowrap; }
}
