/* ============================================================
   PACKZEN — PREMIUM APP REDESIGN  style.css v7.0
   Native App UI  ·  Uber/Porter/Swiggy inspired
   Mobile-first  ·  Deep Navy + Trust Green
   ============================================================ */

/* ════════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════════ */
:root {
  /* Navy palette */
  --navy-900: #060e24;
  --navy-800: #0c1b3a;
  --navy-700: #0f2554;
  --navy-600: #1a3a7a;

  /* Green trust accent */
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-100: #dcfce7;
  --green-50:  #f0fdf4;

  /* Aliases */
  --primary:          var(--navy-800);
  --accent:           var(--green-600);
  --accent-bright:    var(--green-500);
  --accent-gradient: #16a34a;
  --gold:             var(--green-600);
  --gold-bright:      var(--green-500);
  --gold-gradient: #16a34a;
  --gold-tint:        var(--green-50);
  --gold-glow:        0 8px 32px rgba(34,197,94,0.32);

  /* Surfaces */
  --bg-app:       #f1f5f9;
  --bg-primary:   #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary:  #f1f5f9;
  --bg-card:      rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);

  /* Text */
  --text-primary:   #0f172a;
  --text-secondary: #334155;
  --text-muted:     #64748b;
  --text:           #0f172a;

  /* Borders */
  --border-light:  #e2e8f0;
  --border-medium: #cbd5e1;

  /* Shadows — app-style layered */
  --shadow-xs: 0 2px 4px rgba(6,14,36,0.04), 0 1px 2px rgba(6,14,36,0.02);
  --shadow-sm: 0 4px 12px rgba(6,14,36,0.06), 0 2px 4px rgba(6,14,36,0.04);
  --shadow-md: 0 12px 24px -6px rgba(6,14,36,0.08), 0 6px 12px -4px rgba(6,14,36,0.06);
  --shadow-lg: 0 20px 32px -8px rgba(6,14,36,0.10), 0 12px 20px -6px rgba(6,14,36,0.08);
  --shadow-xl: 0 32px 48px -12px rgba(6,14,36,0.12), 0 16px 32px -8px rgba(6,14,36,0.10);
  --shadow-2xl: 0 48px 64px -16px rgba(6,14,36,0.14), 0 24px 48px -12px rgba(6,14,36,0.12);
  --shadow-blue: 0 8px 32px rgba(12,27,58,0.25);

  /* Border radii */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   16px;
  --radius-xl:   16px;
  --radius-2xl:  16px;
  --radius-pill: 9999px;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  0.75rem;
  --space-md:  1rem;
  --space-lg:  1.25rem;
  --space-xl:  1.5rem;
  --space-2xl: 2rem;
  --space-3xl: 3rem;

  /* App bar + bottom nav heights */
  --app-bar-h:   60px;
  --bottom-nav-h: 68px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top:    env(safe-area-inset-top, 0px);

  /* Tints */
  --primary-tint:   rgba(15,37,84,0.06);
  --primary-ring:   rgba(34,197,94,0.28);
  --primary-border: #bbf7d0;
  --primary-deep:   var(--navy-800);

  /* Legacy aliases expected by script.js calculations */
  --success:          #059669;
  --success-light:    #10b981;
  --success-gradient: #16a34a;
  --green-tint:       #ecfdf5;
  --error-text:       #b91c1c;
  --price-text:       var(--green-600);

  /* Form footer */
  --footer-h:        72px;
  --footer-h-mobile: 72px;
}

/* ════════════════════════════════════════════
   RESET
════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0; padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

/* =========================
   PREMIUM TYPOGRAPHY
========================= */

body{
    font-family: 'Nunito', sans-serif;
    font-size:16px;
    line-height:1.65;
    font-weight:400;
    color:var(--text-primary);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    text-rendering:optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family: 'Nunito', sans-serif;
    font-weight:800;
    letter-spacing:-0.03em;
    line-height:1.15;
    color:var(--text-primary);
}

h1{
    font-size:clamp(2.2rem,5vw,3.8rem);
}

h2{
    font-size:clamp(1.8rem,4vw,2.8rem);
}

h3{
    font-size:1.4rem;
}

h4{
    font-size:1.15rem;
}

p{
    font-size:16px;
    line-height:1.75;
    color:var(--text-secondary);
}

small{
    font-size:14px;
    color:var(--text-muted);
}
img { max-width: 100%; height: auto; display: block; }

:focus-visible {
  outline: 3px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

::placeholder { color: #64748b; opacity: 1; font-weight: 500; }

/* ════════════════════════════════════════════
   SKIP LINK
════════════════════════════════════════════ */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: 8px 16px; background: var(--accent); color: #fff;
  border-radius: 0 0 8px 8px; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ════════════════════════════════════════════
   TOP APP BAR
════════════════════════════════════════════ */
.app-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--app-bar-h);
  background: var(--navy-900);
  z-index: 1000;
  border-bottom: 1px solid rgba(34,197,94,0.2);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  padding-top: var(--safe-top);
}

.app-bar-inner {
  max-width: 480px;
  margin: 0 auto;
  height: var(--app-bar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  gap: 0.5rem;
}

.app-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; flex-shrink: 0;
}
.app-logo img {
  width: 34px; height: 34px; border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.app-logo-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 1.1rem;
  color: #fff; letter-spacing: -0.02em;
}

.app-bar-center { flex: 1; display: flex; justify-content: center; }

.app-location-pill {
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 5px 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.app-location-pill:hover { background: rgba(255,255,255,0.14); }
.location-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-500);
  animation: locationPulse 2s ease-in-out infinite;
}
@keyframes locationPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%      { box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}
.location-text {
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.9);
}
.app-location-pill svg { color: rgba(255,255,255,0.5); }

.app-bar-right {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}

.app-icon-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s; position: relative;
}
.app-icon-btn:hover { background: rgba(255,255,255,0.16); }

.notif-badge {
  position: absolute; top: 4px; right: 4px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #ef4444; border: 1.5px solid var(--navy-900);
}

.app-avatar-wrap { cursor: pointer; }
.app-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: #16a34a; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
  box-shadow: var(--gold-glow);
}

/* User dropdown (app style) */
.user-dropdown {
  position: fixed; top: calc(var(--app-bar-h) + 8px); right: 12px;
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); min-width: 230px;
  display: none; z-index: 999999;
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  border-top: 3px solid var(--green-500);
}
.user-dropdown.open { display: block; animation: dropdownReveal 0.2s ease; }
@keyframes dropdownReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dropdown-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px; background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
}
.dropdown-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #16a34a; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
}
.dropdown-name { font-weight: 700; color: var(--text-primary); font-size: 0.9rem; }
.dropdown-sub  { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.dropdown-divider { height: 1px; background: var(--border-light); }

.user-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; color: var(--text-primary);
  text-decoration: none; font-size: 0.88rem; font-weight: 500;
  transition: background 0.15s;
  border-bottom: 1px solid var(--border-light);
}
.user-dropdown a:last-child { border-bottom: none; }
.user-dropdown a:hover { background: var(--bg-secondary); }
.user-dropdown a span { font-size: 1rem; }
.dropdown-signout { color: #dc2626 !important; }

/* ════════════════════════════════════════════
   MAIN APP CONTENT
════════════════════════════════════════════ */
.app-main {
  padding-top: var(--app-bar-h);
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
}

/* ════════════════════════════════════════════
   HOME SCREEN
════════════════════════════════════════════ */
.home-screen {
  padding-bottom: 2rem;
}

/* Hero App Card */
.hero-app-card {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-app-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,14,36,0.15) 0%,
    rgba(6,14,36,0.55) 50%,
    rgba(6,14,36,0.85) 100%
  );
  z-index: 1;
}

.hero-app-content {
  position: relative; z-index: 2;
  padding: 1.5rem 1.25rem 0.75rem;
}

.hero-app-title{
    color:#ffffff;
    font-size:58px;
    font-weight:800;
    line-height:1.05;
    letter-spacing:-1px;
    text-shadow:0 4px 18px rgba(0,0,0,.45);
}
.hero-trust-pill{
    display:inline-flex;
    align-items:center;
    gap:8px;

    color:#ffffff;
    font-size:15px;
    font-weight:700;

    margin-bottom:18px;

    text-shadow:0 2px 8px rgba(0,0,0,.45);
}
.hero-trust-text{
    color:#ffffff !important;
    font-weight:700;
    text-shadow:0 2px 8px rgba(0,0,0,.55);
}

.trust-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#22c55e;
    box-shadow:0 0 10px rgba(34,197,94,.7);
}
.hero-app-sub{
    font-size:1rem;
    line-height:1.6;
    color:rgba(255,255,255,.92);
    font-weight:500;
}
.hero-location{
    color:#ffffff;
    font-size:18px;
    font-weight:500;
    margin:18px 0 12px;
    opacity:.95;
}

.hero-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    background:var(--accent-gradient);

    color:#fff;

    padding:18px 30px;

    border-radius:16px;

    font-size:18px;

    font-weight:700;

    letter-spacing:.2px;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(22,163,74,.35);

    transition:.3s;

    border:none;

    cursor:pointer;
}

.hero-cta-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 35px rgba(22,163,74,.45);
    filter:brightness(1.05);
}
.hero-cta-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 28px rgba(34,197,94,0.55); }

.hero-trust-chips {
  position: relative; z-index: 2;
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 0.875rem 1.25rem 1.25rem;
}

.trust-chip {
  display: flex; align-items: center; gap: 5px;
  background: #16a34a;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: none;
  border-radius: 100px; padding: 4px 10px;
  font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.9);
}
.trust-chip span { font-size: 0.8rem; }

/* Section headers */
.home-section {
  padding: 2.5rem 1rem 0;
}


.section-label-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.875rem;
}
.section-label{
    font-size:.82rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1.8px;
    color:var(--text-secondary);
}

.see-all-link{
    font-size:.82rem;
    font-weight:700;
    color:var(--green-600);
    text-decoration:none;
    transition:.2s;
}

.see-all-link:hover{
    color:var(--green-500);
}

/* Quick Actions */
.quick-actions-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 10px;
  align-items: start;
}

.qa-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 14px 8px;
  cursor: pointer; text-decoration: none; color: var(--text-primary);
  font-size: 0.72rem; font-weight: 600;
  box-shadow: var(--shadow-xs);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  height: 90px;
  min-height: unset;
  max-height: 90px;
  justify-content: center;
}
.qa-card:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-lg); }
.qa-card:active { transform: scale(0.96); }

.qa-icon-wrap {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.qa-book   { background: #f0fdf4; }
.qa-track  { background: #f0fdf4; }
.qa-call   { background: #f0fdf4; }
.qa-wa     { background: #f0fdf4; }

/* Services horizontal scroll */
.services-scroll {
  display: flex; gap: 12px;
  overflow-x: auto; padding-bottom: 8px;
  scrollbar-width: none; -ms-overflow-style: none;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.services-scroll::-webkit-scrollbar { display: none; }

.service-app-card {
  flex: 0 0 190px; scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); padding: 1rem;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-xs);
  cursor: pointer; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative; overflow: hidden;
  border-top: 3px solid transparent;
  min-height: 80px;
}
.service-app-card:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-lg); border-top-color: var(--green-500); }
.service-app-card:active { transform: scale(0.97); }

.sac-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.sac-home   { background: #f0fdf4; }
.sac-office { background: #f0fdf4; }
.sac-single { background: #f0fdf4; }
.sac-local  { background: #f0fdf4; }
.sac-parcel { background: #fffbeb; }

.sac-body { flex: 1; min-width: 0; }
.sac-title { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); }
.sac-sub   { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }

.sac-badge {
  position: absolute; top: 8px; right: 8px;
  background: #16a34a; color: #fff;
  font-size: 0.55rem; font-weight: 800; letter-spacing: 0.5px;
  padding: 2px 6px; border-radius: 100px;
  text-transform: uppercase;
}

/* Offer Banner */
.offer-banner {
  background: var(--navy-900);
  border-radius: var(--radius-xl); padding: 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(34,197,94,0.2);
}
.offer-banner::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(34,197,94,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.offer-tag {
  display: inline-block; background: rgba(34,197,94,0.2);
  color: var(--green-400); border: 1px solid rgba(34,197,94,0.3);
  font-size: 0.6rem; font-weight: 800; letter-spacing: 1px;
  padding: 3px 8px; border-radius: 100px; margin-bottom: 6px;
  text-transform: uppercase;
}
.offer-title { font-family: 'Nunito', sans-serif; font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 3px; }
.offer-sub   { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.offer-btn {
  display: inline-flex; align-items: center;
  background: #16a34a; color: #fff;
  font-size: 0.8rem; font-weight: 700;
  padding: 8px 16px; border-radius: 100px; border: none;
  cursor: pointer; box-shadow: var(--gold-glow);
  transition: box-shadow 0.15s;
  position: relative; overflow: hidden;
}
.offer-btn:hover { box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4); }
.offer-right { font-size: 3.5rem; position: relative; z-index: 1; }

/* Why App Grid */
.why-app-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px;
}

.why-app-card {
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 1rem 0.75rem;
  text-align: center; box-shadow: var(--shadow-xs);
  transition: transform 0.15s;
}
.why-app-card:hover { transform: translateY(-3px) scale(1.02); }

.wac-icon  { font-size: 1.5rem; margin-bottom: 6px; }
.wac-title { font-size: 0.78rem; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.wac-sub   { font-size: 0.65rem; color: var(--text-muted); }

/* Pricing App Card */
.pricing-app-card {
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-app-header {
  background: var(--navy-900);
  padding: 1rem 1.25rem;
}
.pricing-app-title { font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 800; color: #fff; }
.pricing-app-sub   { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

.pricing-rows { padding: 0 1.25rem; }
.pricing-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.85rem; color: var(--text-primary);
}
.pricing-row.last { border-bottom: none; }
.price-val { font-weight: 800; color: var(--green-600); }

.pricing-note {
  margin: 0 1.25rem 1rem;
  font-size: 0.75rem; color: var(--text-muted);
  background: var(--green-50); border-left: 3px solid var(--green-500);
  border-radius: var(--radius-sm); padding: 10px 12px;
}

.pricing-cta {
  display: block; width: calc(100% - 2.5rem); margin: 0 1.25rem 1.25rem;
  background: #16a34a; color: #fff;
  border: none; border-radius: var(--radius-lg); padding: 0.9rem;
  font-weight: 700; font-size: 0.9rem; cursor: pointer;
  box-shadow: var(--gold-glow); transition: transform 0.2s;
}
.pricing-cta:hover { transform: translateY(-3px) scale(1.02); }

/* How It Works */
.hiw-app-list {
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.hiw-app-item {
  display: flex; align-items: center; gap: 14px;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}
.hiw-app-item.last { border-bottom: none; }

.hiw-app-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: #16a34a; color: #fff;
  font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 3px 10px rgba(34,197,94,0.35);
}

.hiw-app-content { flex: 1; }
.hiw-app-title   { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); }
.hiw-app-sub     { font-size: 0.74rem; color: var(--text-muted); margin-top: 2px; }
.hiw-app-icon    { font-size: 1.4rem; }

/* Reviews App Card */
.reviews-app-card {
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); padding: 1.25rem;
  box-shadow: var(--shadow-xs);
}

.reviews-rating-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 1rem;
}
.reviews-stars { font-size: 1.2rem; color: #f59e0b; letter-spacing: 2px; }
.reviews-label { font-size: 0.8rem; color: var(--text-muted); }

.review-leave-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; background: #16a34a; color: #fff;
  border: none; border-radius: var(--radius-lg); padding: 0.9rem;
  font-weight: 700; font-size: 0.88rem; cursor: pointer;
  box-shadow: var(--gold-glow); transition: transform 0.2s;
  text-decoration: none;
}
.review-leave-btn:hover { transform: translateY(-3px) scale(1.02); }

/* FAQ App List */
.faq-app-list {
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.faq-app-list .faq-item { border-bottom: 1px solid var(--border-light); border-radius: 0; }
.faq-app-list .faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%; background: #fff; border: none;
  text-align: left; padding: 1rem 1.25rem;
  font-size: 0.88rem; font-weight: 600; color: var(--text-primary);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 12px; transition: background 0.2s;
  min-height: 52px;
}
.faq-q:hover { background: var(--bg-secondary); }
.faq-arrow { font-size: 0.8rem; color: var(--green-500); transition: transform 0.25s; flex-shrink: 0; }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 0.83rem; color: var(--text-muted); line-height: 1.65;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open .faq-a     { max-height: 200px; padding: 4px 1.25rem 1rem; }
.faq-item.open .faq-q     { background: var(--green-50) !important; color: var(--green-600) !important; }

/* Areas */
.areas-wrap {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-bottom: 0.5rem;
}
.area-chip {
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--border-light);
  border-radius: 100px; padding: 6px 14px;
  font-size: 0.78rem; font-weight: 600; color: var(--text-secondary);
  box-shadow: var(--shadow-xs);
}

/* ════════════════════════════════════════════
   MARQUEE (keep for SEO/trust, slim version)
════════════════════════════════════════════ */
.marquee-wrap { display: none; } /* hidden in app redesign */

/* ════════════════════════════════════════════
   BOTTOM NAVIGATION BAR
════════════════════════════════════════════ */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: calc(var(--bottom-nav-h) + var(--safe-bottom));
  background: #fff;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
  display: flex; align-items: stretch;
  z-index: 900;
  padding-bottom: var(--safe-bottom);
  max-width: 480px; margin: 0 auto;
}

.bnav-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px; background: none; border: none;
  cursor: pointer; padding: 8px 4px;
  color: var(--text-muted); transition: color 0.2s;
  position: relative;
}

.bnav-item.active { color: var(--green-600); }
.bnav-item.active .bnav-icon::after {
  content: ''; position: absolute;
  bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--green-500);
}

.bnav-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; position: relative;
}
.bnav-item.active .bnav-icon { background: var(--green-100); color: var(--green-600); }

.bnav-book-icon {
  background: #16a34a !important;
  color: #fff !important;
  border-radius: 50% !important;
  box-shadow: var(--gold-glow);
}
#bnavBook { color: #fff; }
#bnavBook .bnav-label { color: var(--green-600); }

.bnav-label { font-size: 0.65rem; font-weight: 600; }

/* ════════════════════════════════════════════
   BOOKING BOTTOM SHEET
════════════════════════════════════════════ */
.sheet-overlay {
  position: fixed; inset: 0;
  background: rgba(6,14,36,0.65);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  z-index: 950;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.sheet-overlay.open { opacity: 1; visibility: visible; }

.booking-sheet {
  position: fixed; bottom: 0; left: 0; right: 0;
  max-width: 480px; margin: 0 auto;
  background: var(--bg-primary);
  border-radius: 24px 24px 0 0;
  z-index: 960;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32,0.72,0,1);
  max-height: 96vh;
  display: flex; flex-direction: column;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.25);
  border-top: 3px solid var(--green-500);
  will-change: transform;
}
.booking-sheet.open { transform: translateY(0); }

.sheet-handle-wrap {
  padding: 12px 0 4px;
  display: flex; justify-content: center;
  flex-shrink: 0;
}
.sheet-handle {
  width: 40px; height: 4px; border-radius: 4px;
  background: var(--border-medium);
}

.sheet-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 1.25rem 12px;
  flex-shrink: 0;
}
.sheet-title { font-family: 'Nunito', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--text-primary); }
.sheet-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-secondary); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-muted); transition: background 0.2s;
}
.sheet-close:hover { background: var(--border-light); }

.sheet-form-wrap {
  flex: 1; overflow-y: auto; overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* ════════════════════════════════════════════
   FORM CARD (inside sheet)
════════════════════════════════════════════ */
.form-card {
  width: 100%;
  background: var(--bg-primary);
  overflow: visible;
  display: flex; flex-direction: column;
}

.form-card * { max-width: 100%; box-sizing: border-box; }

/* Step header */
.step-header {
  background: var(--navy-900);
  padding: 1.25rem 1.25rem 1rem;
  flex-shrink: 0;
  position: sticky; top: 0; z-index: 50;
  overflow: hidden;
}
.step-header::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: #16a34a;
}
.step-header::after {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,0.03); border-radius: 50%;
}

.step-header-top {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.875rem;
}
.step-counter { font-family: 'Nunito', sans-serif; font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; }
.step-of      { font-size: 0.95rem; color: rgba(255,255,255,0.4); }
.step-header-label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.8); }

.step-progress-track {
  height: 3px; background: rgba(255,255,255,0.14); border-radius: 4px;
  margin-bottom: 1rem; overflow: hidden;
}
.step-progress-fill {
  height: 100%; background: #16a34a; border-radius: 4px;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 0 12px rgba(34,197,94,0.5);
}

/* Step indicators */
.step-indicators { display: flex; align-items: flex-start; justify-content: space-between; }
.step-dot { display: flex; flex-direction: column; align-items: center; gap: 3px; flex: 1; }

.dot-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; transition: all 0.3s;
}
.dot-label { font-size: 0.56rem; color: rgba(255,255,255,0.38); font-weight: 600; text-align: center; }

.step-dot.active .dot-icon {
  background: var(--green-600); border-color: var(--green-400);
  box-shadow: 0 0 0 4px rgba(34,197,94,0.25);
}
.step-dot.active .dot-label { color: #fff; font-weight: 700; }

.step-dot.done .dot-icon { background: rgba(16,185,129,0.3); border-color: #34d399; font-size: 0; }
.step-dot.done .dot-icon::after { content: '✓'; font-size: 0.8rem; font-weight: 800; color: #fff; }
.step-dot.done .dot-label { color: rgba(255,255,255,0.6); }

.step-line {
  flex: 1; height: 2px; background: rgba(255,255,255,0.14);
  margin-top: 15px; align-self: flex-start;
  transition: background 0.4s; max-width: 60px;
}
.step-line.done { background: #34d399; }

/* Form steps */
.form-step        { display: none; }
.form-step.active { display: flex; flex-direction: column; }

.step-body {
  padding: 1.25rem 1.25rem 1rem;
  animation: stepReveal 0.3s ease;
  overflow-x: hidden;
}
@keyframes stepReveal {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.step-hint { font-size: 0.8rem; color: var(--text-secondary); font-weight: 500; margin-bottom: 1rem; line-height: 1.55; }

/* Step footer */
.step-footer {
  display: flex; gap: 0.75rem;
  padding: 1rem 1.25rem calc(1rem + var(--safe-bottom));
  border-top: 1px solid var(--border-light);
  background: var(--bg-primary); flex-shrink: 0;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
  position: sticky; bottom: 0; z-index: 50;
}

/* ════════════════════════════════════════════
   FORM FIELDS
════════════════════════════════════════════ */
.field-group   { margin-bottom: 1.1rem; }
.field-row-2   { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; margin-bottom: 1.1rem; }
.field-label   {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.68rem; font-weight: 700; color: var(--text-secondary);
  margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.8px;
}
.field-icon { font-size: 0.85rem; }

.field-input {
  width: 100%; padding: 0.875rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: 'Nunito', sans-serif; font-size: 16px;
  background: var(--bg-secondary); color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.field-input:focus {
  border-color: var(--green-500); outline: none;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.12);
  background: #fff;
}
.field-input.error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.10); }

select.field-input {
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 2.5rem;
}

/* Toggle switch */
.toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 0.875rem; background: var(--bg-secondary);
  border-radius: var(--radius-md); border: 1px solid var(--border-light);
  cursor: pointer; margin: 0.5rem 0 0.75rem; min-height: 48px;
  user-select: none;
}
.toggle-text { font-size: 0.83rem; color: var(--text-secondary); }

.toggle { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; inset: 0; background: var(--border-medium); border-radius: 24px; transition: background 0.3s; }
.slider::before {
  content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%;
  background: #fff; left: 3px; top: 3px; transition: transform 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle input:checked + .slider { background: var(--green-600); }
.toggle input:checked + .slider::before { transform: translateX(20px); }

/* Nav buttons */
.btn-next {
  flex: 2; height: 52px; min-height: 44px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: #16a34a; color: #fff;
  border: none; border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: var(--gold-glow);
  position: relative; overflow: hidden;
}
.btn-next:hover { box-shadow: 0 8px 24px rgba(34,197,94,0.45); }

.btn-back {
  flex: 1; height: 52px; min-height: 44px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--bg-secondary); color: var(--text-muted);
  border: 1.5px solid var(--border-light); border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.btn-back:hover { background: var(--border-light); color: var(--text-primary); }

/* ════════════════════════════════════════════
   STEP 0: MOVE TYPE
════════════════════════════════════════════ */
.move-type-grid {
  display: flex; flex-direction: column; gap: 10px;
  margin: 0.25rem 0 1rem;
}

.move-type-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--bg-secondary); cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); position: relative;
  min-height: 72px;
}
.move-type-card:hover { border-color: var(--green-500); background: var(--green-50); }
.move-type-card.selected {
  border-color: var(--green-600); background: var(--green-50);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
}
.move-type-card.selected::after {
  content: '✓'; position: absolute; right: 14px;
  width: 22px; height: 22px; background: #16a34a;
  color: #fff; border-radius: 50%; font-size: 0.7rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; line-height: 22px;
}
.move-type-card:active { transform: scale(0.98); }

.mt-icon  { font-size: 1.8rem; flex-shrink: 0; }
.mt-label { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); }
.mt-sub   { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }

/* Trust box */
.quote-trust-box {
  margin-top: 1rem; background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 1rem;
}
.quote-trust-box h3 { text-align: center; margin-bottom: 12px; font-size: 0.88rem; color: var(--text-primary); }
.trust-features { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.trust-item { text-align: center; }
.trust-item span { font-size: 1.2rem; display: block; margin-bottom: 5px; }
.trust-item p { font-size: 0.65rem; font-weight: 600; color: var(--text-secondary); line-height: 1.3; }
.google-trust { margin-top: 12px; text-align: center; background: var(--green-50); padding: 8px; border-radius: var(--radius-sm); font-weight: 600; color: var(--green-600); font-size: 0.78rem; }

/* ════════════════════════════════════════════
   STEP 1: LOCATION
════════════════════════════════════════════ */
.distance-badge {
  font-size: 0.78rem; color: var(--navy-800); font-weight: 600;
  margin-top: 0.5rem; padding: 6px 12px;
  background: var(--green-50); border-radius: var(--radius-sm);
  display: inline-block; border-left: 3px solid var(--green-500);
}
.distance-badge:empty { display: none; }

.intercity-badge {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--navy-900);
  border-radius: var(--radius-md); padding: 0.875rem 1rem;
  margin-top: 0.75rem; color: #fff;
  border-left: 3px solid var(--green-500);
}
.ic-icon  { font-size: 1.5rem; flex-shrink: 0; }
.ic-title { font-size: 0.83rem; font-weight: 700; }
.ic-sub   { font-size: 0.7rem; opacity: 0.8; margin-top: 2px; }
.ic-km    { color: var(--green-400); }

#map {
  width: 100%; height: 220px; border-radius: var(--radius-md);
  overflow: hidden; margin-top: 0.75rem;
  border: 1.5px solid var(--border-light);
  background: var(--bg-secondary); display: none;
  touch-action: manipulation;
  -webkit-transform: translateZ(0); transform: translateZ(0);
}
.pac-container { z-index: 9999999 !important; border-radius: var(--radius-md); }

/* ════════════════════════════════════════════
   STEP 2: DETAILS
════════════════════════════════════════════ */
/* Date strip */
.date-strip {
  display: flex; gap: 8px; overflow-x: auto;
  padding: 4px 2px 10px; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.date-strip::-webkit-scrollbar { display: none; }

.date-card {
  display: flex; flex-direction: column; align-items: center;
  min-width: 60px; padding: 10px 8px; flex-shrink: 0;
  border: 1.5px solid var(--border-light); border-radius: var(--radius-lg);
  cursor: pointer; background: var(--bg-secondary);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); scroll-snap-align: start;
  min-height: 44px;
}
.date-card:hover  { border-color: var(--green-500); background: var(--green-50); }
.date-card.selected {
  background: #16a34a; border-color: var(--green-600);
  box-shadow: 0 4px 14px rgba(34,197,94,0.30); transform: translateY(-1px);
}
.date-card.today-card .dc-day { color: var(--green-600); }
.date-card.selected .dc-day,
.date-card.selected .dc-num,
.date-card.selected .dc-month { color: #fff !important; }

.dc-day   { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); margin-bottom: 3px; }
.dc-num   { font-family: 'Nunito', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
.dc-month { font-size: 0.58rem; color: var(--text-muted); margin-top: 3px; font-weight: 600; }
.dc-tag   { font-size: 0.52rem; font-weight: 700; background: var(--green-600); color: #fff; padding: 1px 5px; border-radius: 6px; margin-top: 3px; text-transform: uppercase; }
.date-card.selected .dc-tag { background: rgba(255,255,255,0.3); }

.date-more-row { display: flex; align-items: center; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.date-more-btn {
  font-size: 0.78rem; font-weight: 600; color: var(--green-600);
  background: var(--green-50); border: 1.5px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-pill); padding: 6px 14px;
  cursor: pointer; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); font-family: 'Nunito', sans-serif; min-height: 36px;
}
.date-more-btn:hover { background: var(--green-600); color: #fff; }
.date-selected-label { font-size: 0.78rem; color: var(--text-muted); }
.date-selected-label.has-date { color: var(--success); font-weight: 700; }

/* Time slots */
.time-slots-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 4px; }
.time-slot-btn {
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 6px; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg); cursor: pointer;
  background: var(--bg-secondary); transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  font-family: 'Nunito', sans-serif; min-height: 64px;
}
.time-slot-btn:hover  { border-color: var(--green-500); background: var(--green-50); }
.time-slot-btn.selected {
  background: #16a34a; border-color: var(--green-600);
  box-shadow: 0 4px 14px rgba(34,197,94,0.30);
}
.time-slot-btn.selected::after { content: '✓'; position: absolute; top: 4px; right: 6px; font-size: 0.65rem; color: #fff; font-weight: 800; }
.time-slot-btn { position: relative; overflow: hidden; }
.ts-label { font-size: 0.75rem; font-weight: 700; color: var(--text-primary); }
.time-slot-btn.selected .ts-label { color: #fff !important; }

/* House / size select cards */
.select-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.select-card {
  border: 1.5px solid var(--border-light); border-radius: var(--radius-md);
  padding: 0.875rem 0.5rem; text-align: center; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); background: var(--bg-secondary); position: relative;
  min-height: 64px; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.select-card:hover { border-color: var(--green-500); background: var(--green-50); }
.select-card.selected { border-color: var(--green-600); background: var(--green-50); box-shadow: 0 0 0 3px rgba(34,197,94,0.12); }
.select-card.selected::after { content: '✓'; position: absolute; top: 5px; right: 7px; font-size: 0.65rem; color: var(--green-600); font-weight: 800; }
.sc-label { font-size: 0.78rem; font-weight: 700; color: var(--text-primary); }
.sc-sub   { font-size: 0.62rem; color: var(--text-muted); margin-top: 2px; }

/* Vehicle cards */
.vehicle-cards { display: flex; flex-direction: column; gap: 8px; }
.vehicle-card {
  display: flex; align-items: center; gap: 0.875rem;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border-light); border-radius: var(--radius-md);
  cursor: pointer; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); background: var(--bg-secondary);
  position: relative; min-height: 64px;
}
.vehicle-card:hover   { border-color: var(--green-500); background: var(--green-50); }
.vehicle-card.selected {
  border-color: var(--green-600); background: var(--green-50);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.12);
}
.vehicle-card.selected::after { content: '✓'; font-size: 1rem; color: var(--green-600); font-weight: 800; margin-left: auto; flex-shrink: 0; }
.vc-icon { font-size: 1.5rem; flex-shrink: 0; }
.vc-info { flex: 1; min-width: 0; }
.vc-name { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); }
.vc-sub  { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }
.vc-rate { font-size: 0.75rem; font-weight: 800; color: var(--green-600); background: var(--green-50); padding: 3px 8px; border-radius: 20px; flex-shrink: 0; white-space: nowrap; }

/* ════════════════════════════════════════════
   STEP 3: FURNITURE
════════════════════════════════════════════ */
.furniture-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 8px;
  margin-bottom: 1.2rem;
}

.furniture-card {
  position: relative; cursor: pointer; border-radius: var(--radius-md);
  overflow: hidden; border: 1.5px solid var(--border-light);
  background: var(--bg-secondary); transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); display: block;
}
.furniture-card input[type="checkbox"] { display: none; }
.furniture-card:hover { border-color: rgba(34,197,94,0.4); }
.furniture-card:has(input:checked),
.furniture-card.checked {
  border-color: var(--green-600); background: var(--green-50);
  box-shadow: 0 4px 12px rgba(34,197,94,0.12);
}
.fc-check {
  position: absolute; top: 5px; right: 5px;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--border-light); color: transparent;
  font-size: 0.58rem; display: flex; align-items: center; justify-content: center;
  font-weight: 800; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.furniture-card:has(input:checked) .fc-check,
.furniture-card.checked .fc-check { background: var(--green-600); color: #fff; }

.fc-body { display: flex; flex-direction: column; align-items: center; padding: 0.875rem 0.4rem 0.75rem; gap: 3px; text-align: center; }
.fc-emoji { font-size: 1.5rem; }
.fc-name  { font-size: 0.68rem; font-weight: 700; color: var(--text-primary); line-height: 1.2; }

.fc-qty-row { display: none; align-items: center; gap: 4px; margin-top: 5px; justify-content: center; }
.furniture-card:has(input:checked) .fc-qty-row,
.furniture-card.checked .fc-qty-row { display: flex; }

.qty-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--green-600);
  background: #fff; color: var(--green-600);
  font-size: 1.1rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.15s; flex-shrink: 0;
}
.qty-btn:hover { background: var(--green-600); color: #fff; }

.fc-qty {
  width: 28px; text-align: center; border: none; background: transparent;
  font-size: 0.88rem; font-weight: 700; color: var(--text-primary); padding: 0;
  -moz-appearance: textfield;
}
.fc-qty::-webkit-outer-spin-button,
.fc-qty::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Photo upload */
.photo-upload-area {
  border: 2px dashed var(--border-medium); border-radius: var(--radius-md);
  padding: 1.25rem; text-align: center; cursor: pointer; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); background: var(--bg-secondary);
}
.photo-upload-area:hover { border-color: var(--green-500); background: var(--green-50); }
.photo-upload-label { cursor: pointer; }
.upload-icon  { font-size: 1.5rem; margin-bottom: 5px; }
.upload-link  { color: var(--green-600); font-weight: 700; }
.upload-sub   { font-size: 0.7rem; color: var(--text-muted); margin-top: 3px; }
.photo-previews-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.photo-thumb  { width: 56px; height: 56px; border-radius: 8px; object-fit: cover; border: 2px solid var(--green-600); }

/* ════════════════════════════════════════════
   STEP 4: BOOK / PAYMENT
════════════════════════════════════════════ */
.price-box {
  background: #f0fdf4;
  border-radius: var(--radius-lg); padding: 1rem 1.1rem;
  margin-bottom: 1rem; border: 1px solid rgba(34,197,94,0.2);
}
.price-box-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.price-label   { font-size: 0.65rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.price-amount  { font-size: 2rem; font-weight: 800; color: var(--green-600); font-family: 'Nunito', sans-serif; white-space: nowrap; }
.price-breakdown { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }
.discount-row  { font-size: 0.78rem; color: var(--success); font-weight: 700; margin-top: 3px; }
.advance-info  { font-size: 0.75rem; color: var(--text-muted); padding-top: 8px; border-top: 1px solid rgba(34,197,94,0.18); }
.advance-note  { opacity: 0.75; }

/* Promo */
.promo-row { display: flex; gap: 8px; margin-top: 3px; }
.promo-input {
  flex: 1; padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-light); border-radius: var(--radius-md);
  text-transform: uppercase; font-family: 'Nunito', sans-serif;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 1px;
  background: var(--bg-secondary); color: var(--text-primary);
}
.promo-input:focus { border-color: var(--green-500); outline: none; }
.btn-promo {
  padding: 0 1.2rem; background: #16a34a; color: #fff;
  border: none; border-radius: var(--radius-md);
  font-weight: 700; font-size: 0.85rem; cursor: pointer; min-height: 44px;
}
.promo-msg { font-size: 0.75rem; margin-top: 4px; min-height: 18px; }
.promo-success { color: var(--success); font-weight: 600; }
.promo-error   { color: #dc2626; font-weight: 600; }

/* Payment options */
.payment-opts { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 4px; }
.payment-opt {
  border: 1.5px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 0.875rem 0.5rem 0.75rem; text-align: center;
  cursor: pointer; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); background: var(--bg-secondary);
  position: relative; overflow: hidden; min-height: 44px;
}
.payment-opt:hover { border-color: rgba(34,197,94,0.4); transform: translateY(-3px) scale(1.02); }
.payment-opt.selected {
  border-color: var(--green-600); background: var(--green-50);
  box-shadow: 0 4px 14px rgba(34,197,94,0.15);
}
.po-badge {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--green-600); color: #fff; font-size: 0.52rem; font-weight: 800;
  padding: 2px 7px; border-radius: 0 0 6px 6px; text-transform: uppercase; white-space: nowrap;
}
.po-icon   { font-size: 1.2rem; margin: 6px 0 3px; }
.po-label  { font-size: 0.65rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.po-amount { font-size: 0.95rem; font-weight: 800; color: var(--green-600); }
.po-note   { font-size: 0.58rem; color: var(--text-muted); line-height: 1.3; margin-top: 2px; }

/* TnC */
.tnc-row {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 0.75rem; background: var(--bg-secondary);
  border-radius: var(--radius-md); border: 1px solid var(--border-light);
  cursor: pointer; font-size: 0.8rem; color: var(--text-muted); line-height: 1.4;
  margin-bottom: 0.875rem;
}
.tnc-row input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; cursor: pointer; accent-color: var(--green-600); }
.tnc-row a { color: var(--green-600); font-weight: 600; text-decoration: none; }

/* Book action buttons */
.book-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 0.875rem; padding-bottom: 1rem; }

.btn-pay {
  width: 100%; padding: 1rem; background: #16a34a; color: #fff;
  border: none; border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem;
  cursor: pointer; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: var(--gold-glow); min-height: 52px;
  position: relative; overflow: hidden;
}
.btn-pay:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 28px rgba(34,197,94,0.45); }

/* Booking success */
.booking-success-body {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 2.5rem 1.5rem 2rem; gap: 0.75rem;
}
.bs-icon     { font-size: 3rem; animation: bsPop 0.5s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes bsPop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.bs-title    { font-family: 'Nunito', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--success); }
.bs-subtitle { font-size: 0.86rem; color: var(--text-muted); max-width: 260px; line-height: 1.5; }
.bs-id       { font-size: 0.78rem; color: var(--text-muted); background: var(--bg-secondary); padding: 5px 14px; border-radius: 20px; }
.bs-id strong { color: var(--green-600); font-family: monospace; font-size: 0.88rem; }
.bs-track-btn {
  width: 100%; max-width: 280px; padding: 0.85rem;
  background: #16a34a; color: #fff; border: none;
  border-radius: var(--radius-pill); font-family: 'Nunito', sans-serif;
  font-size: 0.88rem; font-weight: 700; cursor: pointer; box-shadow: var(--gold-glow);
}
.bs-new-btn {
  width: 100%; max-width: 280px; padding: 0.75rem;
  background: transparent; color: var(--text-muted);
  border: 1.5px solid var(--border-light); border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif; font-size: 0.84rem; font-weight: 600; cursor: pointer;
}

/* ════════════════════════════════════════════
   TRACK ORDER BANNER
════════════════════════════════════════════ */
#trackOrderBanner { margin: 0.5rem 1rem 1.25rem; }


.tob-inner {
  background: var(--navy-900);
  border-radius: var(--radius-xl); padding: 1rem;
  color: #fff; border-left: 4px solid var(--green-500);
  box-shadow: var(--shadow-md);
}
.tob-top { display: flex; align-items: center; gap: 10px; margin-bottom: 0.75rem; }
.tob-pulse { width: 10px; height: 10px; border-radius: 50%; background: #34d399; flex-shrink: 0; animation: tobPulse 1.5s ease-in-out infinite; }
@keyframes tobPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.5); } 50% { box-shadow: 0 0 0 6px rgba(52,211,153,0); } }
.tob-text { flex: 1; min-width: 0; }
.tob-title { font-size: 0.8rem; font-weight: 700; opacity: 0.9; }
.tob-id    { font-size: 0.72rem; opacity: 0.72; margin-top: 2px; }
.tob-status-label { color: #6ee7b7; font-weight: 700; }
.tob-top-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.tob-btn-track {
  padding: 6px 14px; background: #16a34a; color: #fff;
  border: none; border-radius: 20px; font-size: 0.72rem; font-weight: 700;
  cursor: pointer; min-height: 36px;
}
.tob-dismiss {
  background: none; border: none; color: rgba(255,255,255,0.5); font-size: 0.85rem;
  cursor: pointer; padding: 4px; min-width: 36px; min-height: 36px;
  display: flex; align-items: center; justify-content: center; border-radius: 6px;
}
.tob-dismiss:hover { color: #fff; background: rgba(255,255,255,0.1); }
.tob-progress-bar { height: 3px; background: rgba(255,255,255,0.15); border-radius: 2px; margin-bottom: 0.6rem; overflow: hidden; }
.tob-progress-fill { height: 100%; background: var(--green-500); border-radius: 2px; transition: width 0.5s; }
.tob-steps { display: flex; align-items: flex-start; }
.tob-step  { display: flex; flex-direction: column; align-items: center; flex: 1; position: relative; }
.tob-step-dot { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: rgba(255,255,255,0.5); position: relative; z-index: 1; flex-shrink: 0; }
.tob-step.done   .tob-step-dot { background: #34d399; color: #064e3b; }
.tob-step.active .tob-step-dot { background: var(--green-500); color: #fff; }
.tob-step-line { position: absolute; top: 11px; left: 50%; width: 100%; height: 2px; background: rgba(255,255,255,0.15); z-index: 0; }
.tob-step.done .tob-step-line { background: #34d399; }
.tob-step:last-child .tob-step-line { display: none; }
.tob-step-label { font-size: 0.54rem; color: rgba(255,255,255,0.5); margin-top: 3px; text-align: center; }
.tob-step.done .tob-step-label, .tob-step.active .tob-step-label { color: #fff; font-weight: 600; }
.tob-driver { display: flex; align-items: center; gap: 8px; margin-top: 0.6rem; padding-top: 0.6rem; border-top: 1px solid rgba(255,255,255,0.15); font-size: 0.78rem; }
.tob-driver-call { margin-left: auto; color: #fbbf24; font-weight: 700; text-decoration: none; font-size: 0.75rem; }

/* ════════════════════════════════════════════
   TOAST
════════════════════════════════════════════ */
.toast-msg {
  position: fixed; bottom: calc(var(--bottom-nav-h) + 16px);
  left: 50%; transform: translateX(-50%);
  max-width: calc(100vw - 2rem);
  background: #16a34a; color: #fff;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-pill);
  z-index: 999999; box-shadow: var(--gold-glow);
  font-weight: 700; font-size: 0.85rem; text-align: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s; white-space: nowrap;
}
.toast-msg.show { opacity: 1; visibility: visible; }

/* ════════════════════════════════════════════
   FLOATING BUTTONS (keep for desktop/tablet)
════════════════════════════════════════════ */
.float-call, .float-wa {
  position: fixed; z-index: 850;
  padding: 0.65rem 1.2rem; border-radius: var(--radius-pill);
  font-weight: 800; font-size: 0.82rem; text-decoration: none; color: #fff;
  display: flex; align-items: center; gap: 5px;
  box-shadow: var(--shadow-lg); transition: transform 0.2s; display: none;
}
/* Show on desktop only */
@media (min-width: 640px) {
  .float-call { display: flex; bottom: 5rem; left: 1.5rem; background: #b91c0c; }
  .float-wa   { display: flex; bottom: 5rem; right: 1.5rem; background: #25D366; }
  .float-call:hover, .float-wa:hover { transform: translateY(-3px) scale(1.02); }
}

/* ════════════════════════════════════════════
   APP FOOTER
════════════════════════════════════════════ */
.app-footer {
  background: var(--navy-900); color: rgba(255,255,255,0.6);
  padding: 2.5rem 1.25rem 1.5rem;
  margin-top: 2rem;
}

.app-footer-inner-desktop {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.app-footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-footer-col-title {
  font-family: 'Nunito', sans-serif;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.app-footer-logo {
  font-family: 'Nunito', sans-serif; font-size: 1.8rem; font-weight: 800;
  color: #fff; margin-bottom: 0.25rem;
}
.app-footer-logo span { color: var(--green-400); }
.app-footer p { font-size: 0.85rem; margin-bottom: 0.5rem; line-height: 1.6; max-width: 280px; }
.app-footer-links { display: flex; flex-direction: column; gap: 10px; }
.app-footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.app-footer-links a:hover { color: rgba(255,255,255,1); }
.app-footer-contact { display: flex; flex-direction: column; gap: 10px; }
.app-footer-contact a { color: var(--green-400); text-decoration: none; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.app-footer-bottom {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}
.app-footer-bottom strong { color: rgba(255,255,255,0.7); }
.app-footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.app-footer-bottom a:hover { color: rgba(255,255,255,0.9); }

/* ════════════════════════════════════════════
   LOCAL SEO (visually hidden but accessible/indexed)
════════════════════════════════════════════ */
.local-seo {
  max-width: 100%; margin: 1rem 1rem;
  padding: 1.25rem; color: var(--text-secondary); line-height: 1.7;
  background: var(--bg-secondary); border-radius: var(--radius-xl);
  border: 1px solid var(--border-light); border-left: 4px solid var(--green-500);
  font-size: 0.85rem;
}
.local-seo h2 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.local-seo h3 { font-size: 0.88rem; margin: 1rem 0 0.4rem; color: var(--green-600); }
.local-seo ul { padding-left: 1.25rem; }
.local-seo li { color: var(--text-secondary); margin-bottom: 3px; font-size: 0.82rem; }

/* ════════════════════════════════════════════
   MODALS (all existing — styled for app)
════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(6,14,36,0.90);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  z-index: 99999; display: none; align-items: flex-start; justify-content: center;
  padding: 1rem 0.75rem; overflow-y: auto;
  animation: fadeInOverlay 0.25s ease; -webkit-overflow-scrolling: touch;
}
@media (min-height: 700px) { .modal-overlay { align-items: center; } }
@keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
  background: var(--bg-primary); border-radius: var(--radius-2xl);
  padding: 1.5rem; max-width: 520px; width: 100%;
  max-height: 92vh; overflow-y: auto; position: relative;
  border: 1px solid var(--border-light);
  box-shadow: 0 32px 72px rgba(6,14,36,0.55);
  animation: popIn 0.25s cubic-bezier(0.34,1.3,0.64,1);
  border-top: 3px solid var(--green-500);
  -webkit-overflow-scrolling: touch;
}
.modal-box * { max-width: 100%; }
@keyframes popIn { from { transform: scale(0.93); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.modal-x {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--bg-secondary); border: 1px solid var(--border-light);
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; cursor: pointer; color: var(--text-muted); transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.modal-x:hover { background: var(--border-light); color: var(--text-primary); }
.modal-icon  { font-size: 2.5rem; text-align: center; margin-bottom: 0.75rem; }
.modal-title { font-size: 1.4rem; font-weight: 800; color: var(--text-primary); text-align: center; margin-bottom: 3px; }
.modal-sub   { text-align: center; color: var(--text-muted); font-size: 0.86rem; margin-bottom: 1.5rem; }

/* Auth modal */
.auth-logo  { font-family: 'Nunito', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--navy-800); margin-bottom: 0.875rem; }
.auth-title { font-size: 1.3rem; margin-bottom: 3px; color: var(--text-primary); }
.auth-sub   { color: var(--text-muted); font-size: 0.86rem; margin-bottom: 1.25rem; }
.auth-error { color: #dc2626; font-size: 0.76rem; margin: 3px 0; min-height: 18px; }

.btn-auth {
  width: 100%; padding: 1rem; background: #16a34a; color: #fff;
  border: none; border-radius: var(--radius-pill); font-weight: 700;
  cursor: pointer; margin: 0.875rem 0; font-family: 'Nunito', sans-serif;
  font-size: 0.93rem; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); box-shadow: var(--gold-glow); min-height: 44px;
  position: relative; overflow: hidden;
}
.btn-auth:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(34,197,94,0.42); }

.btn-auth-outline {
  width: 100%; padding: 0.95rem; background: transparent; color: var(--navy-800);
  border: 2px solid var(--navy-800); border-radius: var(--radius-pill);
  font-weight: 600; cursor: pointer; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); font-family: 'Nunito', sans-serif;
}
.btn-auth-outline:hover { background: var(--navy-800); color: #fff; }

.auth-divider { text-align: center; margin: 0.875rem 0; color: var(--text-muted); position: relative; }
.auth-divider::before, .auth-divider::after { content: ''; position: absolute; top: 50%; width: 42%; height: 1px; background: var(--border-light); }
.auth-divider::before { left: 0; } .auth-divider::after { right: 0; }
.auth-link { text-align: center; color: var(--green-600); cursor: pointer; font-size: 0.84rem; margin-top: 0.875rem; }

.phone-row    { display: flex; gap: 8px; }
.phone-prefix { padding: 0.875rem 0.75rem; background: var(--bg-secondary); border: 1.5px solid var(--border-light); border-radius: var(--radius-md); font-weight: 700; color: var(--text-secondary); font-size: 0.9rem; white-space: nowrap; }

/* Dashboard */
.dashboard-box    { max-width: 600px; }
.dashboard-header { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border-light); }
.dashboard-avatar { width: 56px; height: 56px; border-radius: 50%; background: #16a34a; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; flex-shrink: 0; box-shadow: var(--gold-glow); }
.dashboard-name   { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.dashboard-email  { font-size: 0.82rem; color: var(--text-muted); }

.dash-tabs { display: flex; gap: 2px; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border-light); flex-wrap: nowrap; overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
.dash-tabs::-webkit-scrollbar { display: none; }
.dash-tab  { padding: 0.7rem 1rem; background: none; border: none; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); min-height: 44px; }
.dash-tab:hover  { color: var(--navy-800); }
.dash-tab.active { color: var(--green-600); border-bottom-color: var(--green-500); }
.dash-content { min-height: 200px; }

.referral-box { background: var(--bg-secondary); border-radius: var(--radius-lg); padding: 1.5rem; border: 1px solid var(--border-light); }
.referral-title { font-size: 1.05rem; font-weight: 800; color: var(--text-primary); margin-bottom: 4px; }
.referral-sub   { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; }
.referral-code-row { display: flex; align-items: center; gap: 8px; background: #fff; border: 2px dashed var(--green-600); border-radius: var(--radius-md); padding: 0.875rem; margin: 0.875rem 0; }
.referral-code-text { font-size: 1.1rem; font-weight: 800; color: var(--green-600); letter-spacing: 2px; flex: 1; }
.btn-copy { padding: 0.5rem 1rem; background: #16a34a; color: #fff; border: none; border-radius: var(--radius-md); font-weight: 700; cursor: pointer; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); min-height: 44px; }
.ref-stats { display: flex; gap: 1.25rem; margin-top: 0.875rem; }
.ref-stat  { text-align: center; flex: 1; }
.ref-stat-val { font-size: 1.3rem; font-weight: 800; color: var(--success); }
.ref-stat-lbl { font-size: 0.68rem; color: var(--text-muted); }

.notif-row { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid var(--border-light); font-size: 0.86rem; color: var(--text-secondary); }

.bk-card  { background: var(--bg-secondary); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 1rem; margin-bottom: 0.75rem; }
.bk-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 6px; margin-bottom: 5px; }
.bk-route  { font-size: 0.86rem; font-weight: 700; color: var(--text-primary); flex: 1; word-break: break-word; }
.bk-status { font-size: 0.72rem; font-weight: 700; white-space: nowrap; }
.bk-meta   { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 0.76rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.bk-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.bk-btn    { padding: 0.4rem 0.875rem; border-radius: 20px; border: none; font-size: 0.72rem; font-weight: 700; cursor: pointer; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); min-height: 36px; }
.bk-btn.reschedule { background: rgba(26,86,219,0.1); color: var(--navy-800); }
.bk-btn.cancel     { background: rgba(220,38,38,0.1); color: #dc2626; }
.bk-btn.rate       { background: var(--gold-tint); color: var(--green-600); }
.bk-btn.claim      { background: #16a34a; color: #fff; border: none; }

.quote-item { background: var(--bg-secondary); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 0.875rem; margin-bottom: 0.6rem; }
.qi-route   { font-weight: 700; font-size: 0.88rem; color: var(--text-primary); margin-bottom: 3px; }
.qi-details { display: flex; gap: 0.875rem; font-size: 0.78rem; color: var(--text-muted); flex-wrap: wrap; }
.qi-price   { font-weight: 800; color: var(--green-600); }
.dash-empty { text-align: center; color: var(--text-muted); font-size: 0.86rem; padding: 2rem; }

/* Confirm card */
.confirm-card { background: var(--bg-primary); border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-2xl); border: 1px solid var(--border-light); max-width: 520px; width: 100%; margin: 0 auto; }
.confirm-logo-wrap { text-align: center; padding: 1rem 1rem 0; }
.confirm-logo { height: 44px; margin: 0 auto; }
.cc-header { background: #16a34a; padding: 1.5rem; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; color: #fff; }
.cc-check-circle { width: 44px; height: 44px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cc-header-text { flex: 1; }
.cc-title    { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 3px; }
.cc-subtitle { font-size: 0.8rem; color: rgba(255,255,255,0.8); }
.cc-close    { background: rgba(255,255,255,0.15); border: none; color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 0.88rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cc-id-strip { background: var(--bg-secondary); border-bottom: 1px solid var(--border-light); padding: 0.875rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cc-id-left  { display: flex; flex-direction: column; gap: 2px; }
.cc-id-label { font-size: 0.62rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.cc-id-value { font-size: 1.05rem; font-weight: 800; color: var(--navy-800); letter-spacing: 1px; }
.cc-copy-btn { background: #16a34a; color: #fff; border: none; border-radius: 20px; padding: 0.35rem 0.875rem; font-size: 0.75rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 3px; white-space: nowrap; }
.cc-compact { padding: 0.875rem 1.25rem 0.6rem; display: flex; flex-direction: column; gap: 5px; border-bottom: 1px solid var(--border-light); }
.cc-compact-row { display: flex; align-items: center; gap: 6px; font-size: 0.84rem; color: var(--text-primary); flex-wrap: wrap; }
.cc-compact-icon { font-size: 0.95rem; flex-shrink: 0; }
.cc-compact-val  { font-weight: 600; word-break: break-word; max-width: 200px; }
.cc-amount-inline { font-weight: 800; color: var(--green-600); font-size: 0.95rem; }
.cc-compact-note  { font-size: 0.7rem; color: var(--success); font-weight: 700; background: var(--green-tint); padding: 2px 7px; border-radius: 20px; }
.cc-expand-btn    { width: 100%; padding: 0.75rem; background: none; border: none; border-top: 1px solid var(--border-light); color: var(--navy-800); font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: background 0.2s; min-height: 44px; }
.cc-expand-btn:hover { background: var(--bg-secondary); }
.cc-details { padding: 1rem 1.25rem; border-top: 1px solid var(--border-light); }
.cc-route   { display: flex; flex-direction: column; gap: 4px; margin-bottom: 1rem; padding: 0.875rem; background: var(--bg-secondary); border-radius: var(--radius-md); }
.cc-loc     { display: flex; align-items: flex-start; gap: 10px; }
.cc-loc-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.cc-loc-dot.pickup { background: var(--green-500); }
.cc-loc-dot.drop   { background: var(--success); }
.cc-loc-text { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.4; font-weight: 500; word-break: break-word; max-width: 100%; }
.cc-route-line { width: 2px; height: 16px; background: var(--border-light); margin-left: 4px; }
.cc-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.cc-meta-item { display: flex; align-items: flex-start; gap: 8px; padding: 0.75rem; background: var(--bg-secondary); border-radius: var(--radius-md); }
.cc-meta-icon  { font-size: 1rem; flex-shrink: 0; }
.cc-meta-label { font-size: 0.6rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.cc-meta-val   { font-size: 0.83rem; font-weight: 700; color: var(--text-primary); margin-top: 2px; }
.cc-actions    { display: flex; gap: 6px; padding: 1rem 1.25rem 1.25rem; flex-wrap: wrap; }
.cc-btn-wa, .cc-btn-invoice, .cc-btn-close-action { flex: 1; min-width: 80px; padding: 0.7rem 0.5rem; border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 5px; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); border: none; }
.cc-btn-wa      { background: #25D366; color: #fff; }
.cc-btn-invoice { background: var(--navy-900); color: #fff; }
.cc-btn-close-action { background: var(--bg-secondary); color: var(--text-muted); border: 1.5px solid var(--border-light); }

/* Action modals */
.action-modal { max-width: 480px; }
.am-header { display: flex; align-items: center; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-light); margin-bottom: 1.25rem; }
.am-icon   { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.cancel-header .am-icon     { background: #fee2e2; color: #dc2626; }
.reschedule-header .am-icon { background: var(--gold-tint); color: var(--green-600); }
.rate-header                { background: var(--gold-tint); }
.am-title  { font-size: 1.05rem; font-weight: 800; color: var(--text-primary); }
.am-ref    { font-size: 0.76rem; color: var(--text-muted); margin-top: 2px; }
.am-body   { margin-bottom: 1.25rem; }
.am-warning { font-size: 0.8rem; color: #92400e; background: var(--gold-tint); border: 1px solid rgba(249,115,22,0.25); border-radius: var(--radius-md); padding: 0.75rem 1rem; margin-bottom: 1rem; line-height: 1.5; }
.am-footer { display: flex; gap: 8px; padding-top: 0.875rem; }
.modal-close { background: var(--bg-secondary); border: 1px solid var(--border-light); border-radius: 50%; min-width: 44px; min-height: 44px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; cursor: pointer; color: var(--text-muted); transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); flex-shrink: 0; }
.am-btn-secondary { flex: 1; padding: 0.875rem; background: var(--bg-secondary); border: 1.5px solid var(--border-light); border-radius: var(--radius-pill); font-family: 'Nunito', sans-serif; font-size: 0.86rem; font-weight: 600; cursor: pointer; color: var(--text-secondary); }
.am-btn-danger    { flex: 1; padding: 0.875rem; background: #dc2626; color: #fff; border: none; border-radius: var(--radius-pill); font-family: 'Nunito', sans-serif; font-size: 0.86rem; font-weight: 700; cursor: pointer; }
.am-btn-primary, .am-btn-confirm { flex: 1; padding: 0.875rem; background: #16a34a; color: #fff; border: none; border-radius: var(--radius-pill); font-family: 'Nunito', sans-serif; font-size: 0.86rem; font-weight: 700; cursor: pointer; box-shadow: var(--gold-glow); position: relative; overflow: hidden; }

.star-row  { display: flex; justify-content: center; gap: 6px; margin-bottom: 1rem; }
.star-btn  { background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--border-medium); transition: all 0.15s; }
.star-btn.lit { color: #f59e0b; transform: scale(1.1); }
.rate-star { font-size: 2rem; cursor: pointer; color: var(--border-medium); transition: all 0.15s; }
.rate-star.active { color: #f59e0b; }

/* Tracking */
.tracking-box { max-width: 560px; }
.tracking-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.tracking-id { font-size: 0.8rem; color: var(--text-muted); }
.tracking-status-bar { display: flex; gap: 0; margin: 1.25rem 0; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
.tracking-status-bar::-webkit-scrollbar { height: 6px; }
.tracking-status-bar::-webkit-scrollbar-track { background: var(--bg-secondary); border-radius: 4px; }
.tracking-status-bar::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }
.ts-step { display: flex; flex-direction: column; align-items: center; flex: 1; min-width: 60px; position: relative; }
.ts-dot  { width: 28px; height: 28px; border-radius: 50%; background: var(--border-light); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; position: relative; z-index: 1; }
.ts-step.done   .ts-dot { background: var(--success); color: #fff; }
.ts-step.active .ts-dot { background: var(--green-500); color: #fff; }
.ts-step::after { content: ''; position: absolute; top: 13px; left: 50%; width: 100%; height: 2px; background: var(--border-light); z-index: 0; }
.ts-step:last-child::after { display: none; }
.ts-step.done::after { background: var(--success); }
.ts-label { font-size: 0.6rem; color: var(--text-muted); margin-top: 4px; text-align: center; font-weight: 600; }
.tracking-map-area { width: 100%; height: 180px; border-radius: var(--radius-md); background: var(--bg-secondary); margin-bottom: 1rem; overflow: hidden; border: 1.5px solid var(--border-light); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.85rem; }
.tracking-info { display: flex; flex-direction: column; gap: 4px; }
.ti-row { display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--border-light); font-size: 0.84rem; }
.ti-row:last-child { border-bottom: none; }
.ti-lbl { color: var(--text-muted); font-weight: 600; font-size: 0.76rem; }
.ti-val { color: var(--text-primary); font-weight: 700; text-align: right; word-break: break-word; max-width: 200px; }
.btn-open-chat { width: 100%; margin-top: 1rem; padding: 0.875rem; background: #16a34a; color: #fff; border: none; border-radius: var(--radius-pill); font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.9rem; cursor: pointer; box-shadow: var(--gold-glow); }

/* Chat */
.chat-box { background: var(--bg-primary); border-radius: var(--radius-2xl); overflow: hidden; max-width: 480px; width: 100%; height: 72vh; max-height: 72vh; display: flex; flex-direction: column; box-shadow: var(--shadow-2xl); }
.chat-header { background: var(--navy-900); color: #fff; padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 2px solid var(--green-500); }
.chat-drv-avatar { width: 36px; height: 36px; border-radius: 50%; background: #16a34a; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.chat-hdr-title { font-weight: 700; font-size: 0.93rem; color: #fff; }
.chat-hdr-sub   { font-size: 0.7rem; color: #86efac; margin-top: 2px; }
.chat-close-btn { background: #16a34a; border: none; color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.88rem; }
.chat-messages  { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 10px; -webkit-overflow-scrolling: touch; }
.chat-bubble    { max-width: 78%; padding: 0.6rem 0.875rem; border-radius: 16px; font-size: 0.84rem; line-height: 1.45; word-break: break-word; }
.chat-bubble.mine   { background: #16a34a; color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-bubble.theirs { background: var(--bg-secondary); color: var(--text-primary); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-time      { font-size: 0.6rem; opacity: 0.65; margin-top: 2px; display: block; text-align: right; }
.chat-empty-msg { text-align: center; color: var(--text-muted); font-size: 0.84rem; margin: auto; padding: 2rem; }
.chat-input-row { display: flex; gap: 8px; padding: 0.75rem 1rem; border-top: 1px solid var(--border-light); background: #fff; }
.chat-text-input { flex: 1; background: var(--bg-secondary); border: 1.5px solid transparent; border-radius: 24px; padding: 0.65rem 1rem; font-size: 0.9rem; color: var(--text-primary); outline: none; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); font-family: 'Nunito', sans-serif; }
.chat-text-input:focus { border-color: var(--green-500); background: #fff; }
.btn-send { width: 42px; height: 42px; border-radius: 50%; background: #16a34a; color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--gold-glow); }

/* Checklist */
.checklist-box { max-width: 540px; }
.cl-progress  { height: 8px; background: var(--border-light); border-radius: 8px; overflow: hidden; margin-bottom: 5px; }
.cl-progress-bar { height: 100%; background: #16a34a; border-radius: 8px; transition: width 0.4s; }
.cl-score     { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1.25rem; text-align: center; }
.cl-item      { display: flex; align-items: center; gap: 10px; padding: 0.6rem 0.5rem; border-radius: var(--radius-md); cursor: pointer; transition: background 0.2s; min-height: 44px; }
.cl-item:hover { background: var(--bg-secondary); }
.cl-check     { width: 20px; height: 20px; border-radius: 50%; background: var(--border-light); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; color: transparent; flex-shrink: 0; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); }
.cl-item.done .cl-check { background: var(--success); color: #fff; }
.cl-text { font-size: 0.84rem; color: var(--text-primary); flex: 1; }
.cl-item.done .cl-text { text-decoration: line-through; color: var(--text-muted); }

/* Damage modal */
.damage-upload-area { border: 2px dashed var(--border-medium); border-radius: var(--radius-md); padding: 1.25rem; text-align: center; cursor: pointer; background: var(--bg-secondary); }
.damage-upload-area:hover { border-color: var(--green-500); background: var(--green-50); }

/* ════════════════════════════════════════════
   SECTION TAGS (used by script.js)
════════════════════════════════════════════ */
.section-tag {
  display: inline-block; background: var(--gold-tint);
  color: var(--green-600); border: 1px solid rgba(34,197,94,0.28);
  padding: 3px 12px; border-radius: var(--radius-pill);
  font-size: 0.66rem; font-weight: 800; margin-bottom: 0.875rem;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.section-tag.light { background: rgba(255,255,255,0.14); color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.25); }

/* ════════════════════════════════════════════
   DESKTOP WRAPPER — max 480px app feel
════════════════════════════════════════════ */
@media (min-width: 480px) {
  .app-bar-inner { max-width: 480px; }
  .bottom-nav    { max-width: 480px; left: 50%; transform: translateX(-50%); right: auto; }
  .booking-sheet { max-width: 480px; left: 50%; transform: translateX(-50%) translateY(100%); right: auto; }
  .booking-sheet.open { transform: translateX(-50%) translateY(0); }
  .app-main      { max-width: 480px; }
}

/* On true desktop, show as centered phone-like UI */
@media (min-width: 768px) {
  body {
    background: #e2e8f0;
    display: flex; flex-direction: column; align-items: center;
  }
  .app-bar {
    max-width: 480px; left: 50%; right: auto;
    transform: translateX(-50%);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  .app-main {
    box-shadow: 0 0 0 1px var(--border-light), var(--shadow-2xl);
    min-height: 100vh;
    background: var(--bg-app);
  }
}

/* ════════════════════════════════════════════
   REVEAL ANIMATIONS — always visible
════════════════════════════════════════════ */
.reveal, .reveal.visible,
.reveal-stagger .service-card,
.reveal-stagger.visible .service-card { opacity: 1 !important; transform: none !important; }

/* ════════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ════════════════════════════════════════════
   HIGH CONTRAST
════════════════════════════════════════════ */
@media (prefers-contrast: high) {
  .app-bar   { border-bottom: 3px solid var(--green-500); }
  .btn-next, .btn-pay, .btn-auth { border: 2px solid #fff; }
  .field-input { border: 2px solid #000; }
}

/* ════════════════════════════════════════════
   PRINT
════════════════════════════════════════════ */
@media print {
  .app-bar, .bottom-nav, .booking-sheet, .sheet-overlay,
  .float-call, .float-wa, .modal-overlay, #trackOrderBanner { display: none !important; }
  body { background: #fff !important; color: #000 !important; padding-bottom: 0 !important; }
}
/* ============================================
   TRACKING WINDOW
============================================ */

.tracking-window-header{
    display:flex;
    justify-content:flex-end;
    gap:8px;
    padding:10px 12px 0;
}

.tracking-minimize-btn,
.modal-x{
    width:36px;
    height:36px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    background:#1f2937;
    color:#fff;
    font-size:18px;
}

.tracking-minimized{
    position:fixed !important;
    bottom:90px;
    right:20px;
    width:340px;
    height:64px;
    overflow:hidden;
    z-index:99999;
}

.tracking-minimized .tracking-header,
.tracking-minimized .tracking-status-bar,
.tracking-minimized .tracking-map-area,
.tracking-minimized .tracking-info,
.tracking-minimized .tracking-chat{
    display:none;
}
.hero-trust-pill,
.hero-trust-pill *,
.hero-trust-text{
    color:#fff !important;
    fill:#fff !important;
}

/* Ripple Effect Styles */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  background-color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
/* Hide only the floating bubble/teaser on mobile — keep the chat window itself
   functional so "Chat with us" can still open it via JS. Bubble stays visible on desktop. */
#pzToggleBtn { display: none !important; }
#pzTeaser { display: none !important; }
