/* ==========================================================================
   BIKE2GARAGE — MASTER DESIGN SYSTEM & STYLESHEET
   Mobile-First · Apple-Level Visual Restraint · Uber-Level Simplicity
   ========================================================================== */

:root {
  /* Core Brand Tokens */
  --brand-primary: #0D1B2A;       /* Primary Navy — Authority & Display */
  --brand-primary-light: #1B2A3E; /* Elevated Navy */
  --brand-accent: #FF6A00;        /* Signature Orange — "2" Mark & Primary Actions */
  --brand-accent-hover: #E05D00;  /* Deep Orange for hover/active */
  --brand-accent-subtle: #FFF5EC; /* Soft orange background tint */
  --brand-accent-border: #FFD8BA; /* Soft orange border */
  
  --brand-secondary: #4F46E5;     /* Electric Indigo */
  --brand-success: #10B981;       /* Verified Green */
  --brand-success-bg: #ECFDF5;
  --brand-success-border: #A7F3D0;
  
  --brand-warn: #D97706;
  --brand-warn-bg: #FFFBEB;
  --brand-warn-border: #FDE68A;

  --brand-danger: #DC2626;
  --brand-danger-bg: #FEF2F2;
  --brand-danger-border: #FECACA;

  /* Surfaces & Canvas */
  --bg: #F8FAFC;
  --bg-subtle: #F1F5F9;
  --panel: #FFFFFF;
  --panel-elevated: #FFFFFF;
  --ink: #0F172A;
  --ink-secondary: #334155;
  --muted: #64748B;
  --muted-light: #94A3B8;
  --line: #E2E8F0;
  --line-strong: #CBD5E1;

  /* Typography — High-Performance Native System Font Stack */
  --font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Elevation & Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 6px 16px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 14px 28px -4px rgba(15, 23, 42, 0.1), 0 4px 10px -2px rgba(15, 23, 42, 0.05);
  --shadow-float: 0 20px 35px -5px rgba(13, 27, 42, 0.22), 0 8px 16px -4px rgba(13, 27, 42, 0.12);

  /* Radii - Unified Global Standard Scale */
  --radius-xs: 6px;       /* Micro elements, badges, status chips */
  --radius-sm: 8px;       /* Sub-actions, small buttons, subnav buttons */
  --radius-md: 12px;      /* Standard for ALL interactive Buttons, Inputs, Selection Tiles */
  --radius-lg: 16px;      /* Cards, Panels, Modals */
  --radius-xl: 20px;      /* Major Hero Section Wrapper */
  --radius-pill: 9999px;  /* Dedicated pill tokens */

  /* Spacing - 8-Point Harmonious Grid Scale */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Layout Max-Widths */
  --max-content: 1140px;
  --max-form: 680px;
}

/* Base Reset & Ergonomics */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  margin: 0;
  padding: 0;
}

button, a, [role="button"], [tabindex="0"], label, summary {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

input, select, textarea {
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-optical-sizing: auto;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  padding-bottom: 24px;
}

body.field-mode-active {
  padding-bottom: 84px;
}

/* Global Accessibility & Focus State */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
  border-radius: inherit;
}

.admin-input-field:focus,
.admin-input-field:focus-visible,
.ccc-input-field:focus,
.ccc-input-field:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* Dark Surface Autofill Overrides (prevents browser white flash) */
[data-theme="dark"] input:-webkit-autofill,
[data-theme="dark"] input:-webkit-autofill:hover,
[data-theme="dark"] input:-webkit-autofill:focus,
[data-theme="dark"] input:-webkit-autofill:active,
.admin-input-field:-webkit-autofill,
.admin-input-field:-webkit-autofill:hover,
.admin-input-field:-webkit-autofill:focus,
.admin-input-field:-webkit-autofill:active,
.ccc-input-field:-webkit-autofill,
.ccc-input-field:-webkit-autofill:hover,
.ccc-input-field:-webkit-autofill:focus,
.ccc-input-field:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #0A1120 inset !important;
  box-shadow: 0 0 0 1000px #0A1120 inset !important;
  -webkit-text-fill-color: #FFFFFF !important;
  caret-color: #FFFFFF !important;
  transition: background-color 5000000s ease-in-out 0s;
}

/* Fluid Typographic Scale — Google Sans Flex */
h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-optical-sizing: auto;
}

h2, .h2 {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.3vw, 24px);
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}

h3, .h3 {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 650;
  color: var(--brand-primary);
  line-height: 1.28;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
}

h4, h5, h6, .font-display {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brand-primary);
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}

p {
  color: var(--ink-secondary);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* App Shell */
.shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   NAVIGATION & TOPBAR
   ========================================================================== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 64px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.35);
  width: 100%;
}

@media (min-width: 768px) {
  .topbar {
    height: 72px;
    padding: 0 24px;
  }
}

.topbar-inner {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-container {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  height: 100%;
}

.b2g-logo-wrap {
  display: inline-flex !important;
  align-items: center;
  height: 38px;
  max-height: 38px;
  width: auto;
}

.b2g-logo {
  height: 38px !important;
  max-height: 38px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  .b2g-logo-wrap {
    height: 42px;
    max-height: 42px;
  }
  .b2g-logo {
    height: 42px !important;
    max-height: 42px !important;
    max-width: 240px !important;
  }
}

.brand-pilot-badge {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-accent);
  background: rgba(255, 106, 0, 0.12);
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 106, 0, 0.3);
  display: none;
}

@media (min-width: 600px) {
  .brand-pilot-badge {
    display: inline-block;
  }
}

/* Desktop Main Nav */
.topbar-nav {
  display: none;
  align-items: center;
  gap: 24px;
}

@media (min-width: 992px) {
  .topbar-nav {
    display: flex;
  }
}

.topbar-nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s ease;
  padding: 6px 0;
  position: relative;
}

.topbar-nav-link:hover, .topbar-nav-link.active {
  color: #FFFFFF;
}

.topbar-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-accent);
  border-radius: 2px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-header-cta {
  background: var(--brand-accent);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.35);
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 767px) {
  .btn-header-cta {
    display: none !important;
  }
}

.btn-admin-access {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-admin-access:hover, .btn-admin-access.active {
  background: #1E293B;
  border-color: #38BDF8;
  color: #38BDF8;
}

.admin-subnav-bar {
  background: #09131F;
  border-bottom: 1px solid #1E293B;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.admin-subnav-btn {
  background: #1E293B;
  color: #94A3B8;
  border: 1px solid #334155;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.admin-subnav-btn:hover {
  color: #FFFFFF;
  background: #334155;
}

.admin-subnav-btn.active {
  background: var(--brand-accent);
  color: #FFFFFF;
  border-color: var(--brand-accent);
}

.portal-footer {
  background: var(--brand-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 20px;
  margin-top: 48px;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .portal-footer {
    padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }
}

.portal-footer-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
}

.portal-footer-brand {
  grid-column: 1 / -1;
}

.portal-footer-support {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px;
}

@media (min-width: 1024px) {
  .portal-footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding: 16px 0;
  }

  .portal-footer-brand,
  .portal-footer-support {
    grid-column: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
  }
}

.portal-footer-bottom {
  max-width: var(--max-content);
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #64748B;
  padding-right: 76px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .portal-footer-bottom {
    padding-right: 68px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.btn-header-cta:hover {
  background: var(--brand-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 106, 0, 0.45);
}

.btn-header-cta:active {
  transform: translateY(1px) scale(0.97);
}

.btn-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 20px;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.1s cubic-bezier(0.2, 0.8, 0.4, 1), background-color 0.12s ease;
}

.btn-menu-toggle:active {
  transform: scale(0.94);
  background: rgba(255, 255, 255, 0.18);
}

@media (min-width: 992px) {
  .btn-menu-toggle {
    display: none;
  }
}

/* ==========================================================================
   LAYOUT STRUCTURE & DESKTOP HARMONY
   ========================================================================== */

.app-body {
  flex: 1 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px 40px;
}

@media (min-width: 768px) {
  .app-body {
    padding: 32px 24px 56px;
  }
}

@media (min-width: 1024px) {
  .app-body {
    padding: 40px 32px 64px;
  }
}

.main-content {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .main-content {
    max-width: var(--max-content);
  }
}

.layout {
  display: flex;
  flex: 1;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 12px;
  gap: 24px;
}

@media (min-width: 768px) {
  .layout {
    padding: 24px 20px;
  }
}

@media (min-width: 1024px) {
  .layout {
    max-width: var(--max-content);
    padding: 32px 0;
  }
}

.side {
  width: 260px;
  flex-shrink: 0;
  display: none;
}

@media (min-width: 1024px) {
  .side {
    display: block;
  }
}

/* When in role-specific dashboard or admin view, side navigation is useful */
.main {
  flex: 1;
  min-width: 0;
}

/* Sidebar Navigation */
.nav {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-sm);
}

.nav button {
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav button:hover {
  background: var(--bg-subtle);
  color: var(--brand-primary);
}

.nav button.active {
  background: var(--brand-primary);
  color: #FFFFFF;
  font-weight: 700;
}

/* Sidebar Role Card */
.sidebar-role-card {
  margin-top: 16px;
  background: var(--brand-primary);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.sidebar-role-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-accent);
  display: block;
  margin-bottom: 10px;
}

.sidebar-role-btn {
  width: 100%;
  text-align: left;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-role-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.sidebar-role-btn.active {
  background: var(--brand-accent);
  color: #FFFFFF;
  font-weight: 700;
}

/* ==========================================================================
   HOMEPAGE & HERO SECTION — GLOBAL-STANDARD EDITORIAL EXPERIENCE
   ========================================================================== */

.hero-editorial-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 28px;
  background: radial-gradient(120% 90% at 0% 0%, rgba(255, 106, 0, 0.05) 0%, rgba(255, 255, 255, 0) 60%), var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 40px -12px rgba(13, 27, 42, 0.09), var(--shadow-sm);
  position: relative;
}

@media (min-width: 900px) {
  .hero-editorial-section {
    grid-template-columns: 1.18fr 1fr;
    align-items: stretch;
    gap: 0;
  }
}

@media (min-width: 1024px) {
  .hero-editorial-section {
    min-height: 520px;
    border-radius: 24px;
    margin-bottom: 36px;
  }
}

.hero-editorial-content {
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 600px) {
  .hero-editorial-content {
    padding: 38px 32px 30px;
  }
}

@media (min-width: 1024px) {
  .hero-editorial-content {
    padding: 48px 48px 40px;
  }
}

/* Live Operational Status Pill with Social Proof */
.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  padding: 5px 12px;
  border-radius: 9999px;
  margin-bottom: 16px;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  max-width: 100%;
}

.hero-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
  animation: pulseLiveDot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseLiveDot {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-status-hub {
  color: var(--ink-secondary);
}

@media (max-width: 480px) {
  .hero-status-hub {
    display: none;
  }
  .hero-status-pill {
    padding: 4px 10px;
    font-size: 11.5px;
    gap: 6px;
    margin-bottom: 12px;
  }
}

.hero-rating-badge {
  background: #FEF3C7;
  color: #92400E;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 9999px;
  border: 1px solid #FDE68A;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}

/* Commanding Hero Headline — Google Sans Flex Precision */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 46px);
  font-weight: 750;
  color: var(--brand-primary);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  max-width: 580px;
  font-optical-sizing: auto;
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(39px, 11.25vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
  }
}

.hero-headline-accent {
  color: var(--brand-accent);
  background: linear-gradient(135deg, #FF6A00 0%, #FF8533 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  font-weight: 750;
}

.hero-supporting-copy {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--muted);
  letter-spacing: -0.005em;
  margin-bottom: 22px;
  font-optical-sizing: auto;
}

@media (min-width: 600px) {
  .hero-supporting-copy {
    font-size: 15.5px;
  }
}

@media (min-width: 1024px) {
  .hero-supporting-copy {
    font-size: 16px;
    line-height: 1.62;
    max-width: 520px;
    margin-bottom: 26px;
  }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

@media (min-width: 480px) {
  .hero-cta-group {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .hero-cta-group {
    gap: 14px;
    margin-bottom: 24px;
  }
  .hero-cta-group .btn.large {
    padding: 16px 32px;
    font-size: 16px;
  }
}

/* Fast-Start 1-Tap Service Bar in Hero */
.hero-quick-bar {
  margin-bottom: 20px;
  padding: 12px 14px;
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

@media (min-width: 1024px) {
  .hero-quick-bar {
    padding: 14px 18px;
    margin-bottom: 24px;
    border-radius: 14px;
  }
}

.hero-quick-tag {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.hero-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

@media (min-width: 1024px) {
  .hero-quick-chips {
    gap: 8px;
  }
}

.hero-chip {
  appearance: none;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 9999px;
  min-height: 34px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: transform 0.1s cubic-bezier(0.2, 0.8, 0.4, 1), border-color 0.12s ease, color 0.12s ease, box-shadow 0.12s ease;
  box-shadow: var(--shadow-sm);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

@media (min-width: 1024px) {
  .hero-chip {
    padding: 6px 14px;
    font-size: 13px;
  }
}

.hero-chip:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(255, 106, 0, 0.18);
}

.hero-chip:active {
  transform: scale(0.96);
}

.hero-chip .chip-cost {
  color: var(--brand-accent);
  font-weight: 800;
  background: var(--brand-accent-subtle);
  padding: 1px 5px;
  border-radius: 9999px;
  font-size: 10.5px;
}

/* Hero Trust Guarantees Micro-Cards */
.hero-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

@media (min-width: 1024px) {
  .hero-trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding-top: 22px;
  }
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}

.hero-trust-badge:hover {
  background: var(--panel);
  border-color: var(--line-strong);
}

.hero-trust-badge .trust-icon {
  font-size: 16px;
  line-height: 1;
}

.hero-trust-badge strong {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.hero-trust-badge small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.15;
}

.hero-editorial-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  background: var(--brand-primary);
  display: flex;
}

.hero-editorial-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.28) 0%, rgba(13, 27, 42, 0.05) 45%, rgba(13, 27, 42, 0.75) 100%);
  pointer-events: none;
}

@media (min-width: 900px) {
  .hero-editorial-visual {
    height: 100%;
    min-height: 100%;
  }
}

.hero-editorial-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-editorial-section:hover .hero-visual-img {
  transform: scale(1.02);
}

.hero-visual-overlay-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-visual-overlay-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: block;
}

.hero-visual-overlay-sub {
  font-size: 11px;
  color: var(--muted-light);
}

/* Compact Streamlined Partner Trust Bar in Booking Card */
.booking-partner-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.booking-partner-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--ink);
}

.booking-partner-info strong {
  font-weight: 800;
  color: var(--brand-primary);
}

.booking-partner-info .partner-meta {
  color: var(--muted);
  font-size: 12.5px;
}

.booking-trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 700;
  color: #065F46;
  background: var(--brand-success-bg);
  border: 1px solid var(--brand-success-border);
  padding: 3px 8px;
  border-radius: var(--radius-xs);
}

/* Sleek Single-Row Trust Proof Bar */
.hero-trust-row-clean {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  margin-top: 6px;
  border-top: 1px solid var(--line);
}

.hero-trust-item-clean {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-secondary);
}

.hero-trust-item-clean .trust-icon {
  font-size: 14px;
  line-height: 1;
}

/* ==========================================================================
   BUTTON SYSTEM
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  transition: transform 0.1s cubic-bezier(0.2, 0.8, 0.4, 1), background-color 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease, color 0.12s ease, opacity 0.12s ease;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
}

.btn.primary {
  background: var(--brand-accent);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.3);
}

.btn.primary:hover {
  background: var(--brand-accent-hover);
  box-shadow: 0 6px 18px rgba(255, 106, 0, 0.4);
}

.btn.secondary {
  background: var(--brand-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(13, 27, 42, 0.15);
}

.btn.secondary:hover {
  background: var(--brand-primary-light);
}

.btn.outline {
  background: transparent;
  color: var(--brand-primary);
  border: 1.5px solid var(--line-strong);
}

.btn.outline:hover {
  background: var(--bg-subtle);
  border-color: var(--brand-primary);
}

.btn.whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn.whatsapp:hover {
  background: #20BA5A;
}

.btn.full-width {
  width: 100%;
}

.btn.large {
  padding: 16px 28px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   CARDS & CONTAINERS
   ========================================================================== */

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

@media (min-width: 600px) {
  .card {
    padding: 28px;
  }
}

.card.elevated {
  box-shadow: var(--shadow-md);
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}

/* Status Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--radius-xs);
}

.pill.success {
  background: var(--brand-success-bg);
  color: #065F46;
  border: 1px solid var(--brand-success-border);
}

.pill.warn {
  background: var(--brand-warn-bg);
  color: #92400E;
  border: 1px solid var(--brand-warn-border);
}

.pill.blue {
  background: #EFF6FF;
  color: #1E40AF;
  border: 1px solid #BFDBFE;
}

.pill.neutral {
  background: var(--bg-subtle);
  color: var(--muted);
  border: 1px solid var(--line);
}

/* ==========================================================================
   PROGRESSIVE 5-STEP BOOKING EXPERIENCE
   ========================================================================== */

#booking-section {
  scroll-margin-top: 88px;
}

.booking-card-wrapper {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 32px;
}

@media (min-width: 1024px) {
  .booking-card-wrapper {
    max-width: var(--max-content);
    margin-bottom: 48px;
  }
  .booking-card-wrapper .card.elevated {
    padding: 40px 48px;
    border-radius: 24px;
  }
}

.step-indicator-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.step-badge {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-accent);
  background: var(--brand-accent-subtle);
  padding: 4px 8px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--brand-accent-border);
}

.step-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-primary);
  margin: 6px 0 16px;
}

@media (min-width: 600px) {
  .step-title {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .step-title {
    font-size: 22px;
    margin: 8px 0 20px;
  }
}

/* Step 1: Service Symptoms Grid */
.customer-symptoms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

@media (min-width: 500px) {
  .customer-symptoms-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (min-width: 1024px) {
  .customer-symptoms-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
  }
}

.symptom-box {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}

@media (min-width: 1024px) {
  .symptom-box {
    padding: 22px 16px;
    border-radius: 14px;
    min-height: 125px;
    justify-content: center;
  }
}

.symptom-box:hover {
  background: var(--panel);
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.symptom-box.selected {
  background: var(--brand-accent-subtle);
  border-color: var(--brand-accent);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.18);
}

/* Strict SVG Icon Sizing Hierarchy */
.svg-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.hero-locality-badge .svg-icon,
.step-badge .svg-icon,
.pill .svg-icon,
.hero-trust-item .svg-icon {
  width: 14px;
  height: 14px;
}

.btn .svg-icon,
.btn-header-cta .svg-icon,
.btn-admin-access .svg-icon,
.admin-subnav-btn .svg-icon {
  width: 18px;
  height: 18px;
}

.symptom-box .svg-icon {
  width: 32px;
  height: 32px;
  stroke: var(--brand-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.15s ease;
}

.symptom-box.selected .svg-icon {
  stroke: var(--brand-accent);
}

.mode-tile-btn .svg-icon {
  width: 28px;
  height: 28px;
  stroke: var(--brand-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.15s ease;
}

.mode-tile-btn.selected .svg-icon {
  stroke: var(--brand-accent);
}

.symptom-box .title {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-primary);
}

.symptom-box.selected .title {
  color: var(--brand-accent-hover);
}

/* Step 2 & 3: Tile Groups */
.tile-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

@media (min-width: 600px) {
  .tile-group {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

.tile-btn {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-secondary);
  text-align: center;
  transition: all 0.15s ease;
  cursor: pointer;
}

.tile-btn:hover {
  background: var(--panel);
  border-color: var(--line-strong);
}

.tile-btn.selected {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(13, 27, 42, 0.2);
}

/* ============================================================
   GLOBAL-STANDARD SMART COMBOS, CHIPS & ACCELERATORS
   ============================================================ */

.smart-input-container {
  position: relative;
  margin-bottom: 12px;
}

.smart-input-box {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.smart-input-box:focus-within {
  border-color: var(--brand-accent);
  background: var(--panel);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.14), var(--shadow-md);
}

.smart-input-icon {
  position: absolute;
  left: 14px;
  color: var(--muted);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease;
}

.smart-input-box:focus-within .smart-input-icon {
  color: var(--brand-accent);
}

.smart-input-field {
  width: 100%;
  padding: 13px 44px 13px 44px;
  font-size: 14.5px;
  font-weight: 500;
  border: none;
  background: transparent;
  color: var(--ink);
  outline: none;
  font-family: inherit;
}

.smart-input-field.with-action {
  padding-right: 110px;
}

.smart-input-field::placeholder {
  color: var(--muted);
  font-weight: 400;
}

.smart-input-clear-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 15px;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.15s ease;
}

.smart-input-clear-btn:hover {
  background: var(--line);
  color: var(--ink);
}

/* Embedded Action Button (Locate Me inside location bar) */
.smart-action-btn {
  position: absolute;
  right: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  background: var(--brand-accent-subtle);
  border: 1px solid var(--brand-accent-border);
  border-radius: var(--radius-sm);
  color: var(--brand-accent);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.smart-action-btn:hover {
  background: var(--brand-accent);
  color: #FFFFFF;
  border-color: var(--brand-accent);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 106, 0, 0.25);
}

.smart-action-btn.locating {
  background: var(--brand-accent);
  color: #FFFFFF;
  animation: pulseLocating 1.2s infinite;
}

@keyframes pulseLocating {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Autocomplete Floating Suggestions Dropdown */
.autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  max-height: 280px;
  overflow-y: auto;
  z-index: 100;
  animation: dropdownSlide 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.autocomplete-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--line-subtle);
  transition: background 0.12s ease;
}

.autocomplete-item:last-child {
  border-bottom: none;
}

.autocomplete-item:hover, .autocomplete-item.selected {
  background: var(--bg-subtle);
}

.autocomplete-item .item-icon {
  color: var(--muted);
  display: flex;
  align-items: center;
  font-size: 14px;
}

.autocomplete-item:hover .item-icon {
  color: var(--brand-accent);
}

.autocomplete-item .item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.autocomplete-item .item-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.autocomplete-item .item-sub {
  font-size: 11px;
  color: var(--muted);
}

.autocomplete-item .item-tag {
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  background: var(--brand-accent-subtle);
  color: var(--brand-accent);
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.autocomplete-item.custom-highlight {
  background: rgba(255, 106, 0, 0.06);
  border-left: 3px solid var(--brand-accent);
}

/* Quick Accelerator Chips Section */
.quick-chips-section {
  margin-bottom: 24px;
}

.quick-chips-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.quick-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-chip-pill {
  appearance: none;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.quick-chip-pill:hover {
  background: var(--panel);
  border-color: var(--brand-accent);
  color: var(--brand-accent);
  transform: translateY(-1px);
}

.quick-chip-pill.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(13, 27, 42, 0.25);
}

/* Step 1: Custom Problem Wrap */
.custom-problem-wrap {
  margin-top: 14px;
  animation: fadeInDown 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Step 4: Service Location Mode */
.location-mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .location-mode-grid {
    gap: 16px;
    margin-bottom: 32px;
  }
  .mode-tile-btn {
    padding: 22px 20px;
    border-radius: 14px;
  }
  .mode-tile-title {
    font-size: 15px;
  }
}

.mode-tile-btn {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.mode-tile-btn:hover {
  background: var(--panel);
  border-color: var(--line-strong);
}

.mode-tile-btn.selected {
  background: var(--brand-accent-subtle);
  border-color: var(--brand-accent);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.18);
}

.mode-tile-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--brand-primary);
  display: block;
  margin-bottom: 2px;
}

.mode-tile-btn.selected .mode-tile-title {
  color: var(--brand-accent);
}

.mode-tile-sub {
  font-size: 11.5px;
  color: var(--muted);
  display: block;
}

/* Step 5: Input Fields */
.form-field-group {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

@media (min-width: 600px) {
  .form-field-group {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .form-field-group {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 14px;
  }
  .form-input {
    padding: 14px 18px;
    font-size: 15.5px;
  }
  .phone-input-field {
    padding: 14px 18px;
    font-size: 19px;
  }
  .phone-prefix {
    padding: 14px 18px;
    font-size: 16px;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--line);
  background: #FFFFFF;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
}

.phone-input-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--brand-primary);
  border-radius: var(--radius-md);
  background: #FFFFFF;
  overflow: hidden;
  transition: box-shadow 0.15s ease;
}

.phone-input-wrap:focus-within {
  box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.15);
}

.phone-prefix {
  font-size: 15px;
  font-weight: 800;
  color: var(--brand-primary);
  padding: 12px 14px;
  background: var(--bg-subtle);
  border-right: 1px solid var(--line);
  user-select: none;
}

.phone-input-field {
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  width: 100%;
  padding: 12px 14px;
  background: transparent;
  color: var(--ink);
}

/* Notice Banners */
.notice {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  line-height: 1.45;
  border: 1px solid transparent;
}

.notice.info {
  background: #EFF6FF;
  border-color: #BFDBFE;
  color: #1E40AF;
}

.notice.error {
  background: var(--brand-danger-bg);
  border-color: var(--brand-danger-border);
  color: #991B1B;
}

/* ==========================================================================
   PUBLIC TICKET & CONFIRMATION VIEW
   ========================================================================== */

.public-ticket-container {
  max-width: 640px;
  margin: 0 auto;
}

.ticket-status-header {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}

.ticket-ref-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--brand-primary);
  margin: 10px 0 4px;
}

@media (min-width: 600px) {
  .ticket-ref-title {
    font-size: 28px;
  }
}

.ticket-meta-sub {
  font-size: 14px;
  color: var(--muted);
}

.mechanic-trust-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 18px;
}

.mechanic-trust-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.mechanic-name-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-primary);
  margin: 2px 0;
}

.handover-otp-box {
  background: var(--panel);
  border: 2px dashed var(--brand-accent);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  margin-bottom: 18px;
}

.handover-otp-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: block;
}

.handover-otp-digits {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: var(--brand-primary);
  margin: 8px 0;
}

/* ==========================================================================
   INFORMATIONAL & MARKETING SECTIONS
   ========================================================================== */

/* Editorial Storytelling Steps */
.how-it-works-grid {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

@media (min-width: 1024px) {
  .how-it-works-grid {
    gap: 24px;
    margin: 32px 0;
  }
}

.how-step-editorial-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s ease;
}

@media (min-width: 768px) {
  .how-step-editorial-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .how-step-editorial-card {
    border-radius: 20px;
  }
  .how-step-content {
    padding: 36px 40px;
  }
}

.how-step-content {
  padding: 24px;
}

.how-step-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-accent);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 12px;
}

.how-step-media {
  height: 200px;
  width: 100%;
  overflow: hidden;
  background: var(--brand-primary);
}

@media (min-width: 768px) {
  .how-step-media {
    height: 100%;
    min-height: 220px;
  }
}

@media (min-width: 1024px) {
  .how-step-media {
    min-height: 260px;
  }
}

.how-step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Service Catalog Grid */
.service-catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

@media (min-width: 640px) {
  .service-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
  }
}

.service-catalog-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-xs);
}

@media (min-width: 1024px) {
  .service-catalog-card {
    border-radius: 20px;
  }
}

.service-catalog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.service-catalog-media {
  height: 160px;
  width: 100%;
  overflow: hidden;
  background: var(--brand-primary);
}

@media (min-width: 1024px) {
  .service-catalog-media {
    height: 190px;
  }
}

.service-catalog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-catalog-card:hover .service-catalog-img {
  transform: scale(1.04);
}

.service-catalog-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-catalog-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 6px;
}

.service-catalog-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Floating WhatsApp Button */
/* Sleek Round Official WhatsApp Floating Icon */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  background: #25D366;
  color: #FFFFFF;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-float-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-float-btn svg {
  width: 30px;
  height: 30px;
  fill: #FFFFFF;
}

@media (max-width: 767px) {
  .whatsapp-float-btn {
    bottom: 78px;
    right: 16px;
    left: auto;
    width: 48px;
    height: 48px;
  }
  .whatsapp-float-btn svg {
    width: 26px;
    height: 26px;
  }
}

/* Mobile Sticky Bottom Booking Bar */
.mobile-sticky-book-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 16px max(10px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .mobile-sticky-book-bar {
    display: none;
  }
}

/* Field Drawer (Admin Testing) */
.field-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #09131F;
  border-top: 1px solid #1E293B;
  color: #FFFFFF;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 1000;
  font-size: 12px;
}

.field-drawer.hidden {
  display: none;
}

.field-drawer-title {
  font-weight: 800;
  color: var(--brand-accent);
}

.field-triggers {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.btn-trigger {
  background: #1E293B;
  color: #CBD5E1;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid #334155;
  transition: all 0.15s ease;
}

.btn-trigger:hover {
  background: var(--brand-accent);
  color: #FFFFFF;
  border-color: var(--brand-accent);
}

/* Modal Overlay & Dialog */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeIn 0.2s ease;
}

.modal-content {
  background: var(--panel);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 24px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-float);
  animation: slideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(16px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.data-table th, .data-table td {
  padding: 10px 14px;
  text-align: left;
}

.data-table th {
  background: var(--brand-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 12.5px;
}

.data-table tr:not(:last-child) td {
  border-bottom: 1px solid var(--line);
}

/* ==========================================================================
   CUSTOMIZABLE MECHANIC BILLING SYSTEM
   ========================================================================== */
.billing-builder-box {
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.billing-presets-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 16px;
}

.billing-preset-chip {
  background: var(--bg-subtle);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-secondary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
  user-select: none;
}

.billing-preset-chip:hover {
  background: var(--brand-accent-subtle);
  border-color: var(--brand-accent);
  color: var(--brand-accent);
  transform: translateY(-1px);
}

.billing-preset-chip .price-badge {
  background: rgba(13, 27, 42, 0.08);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 11px;
  color: var(--ink);
}

.billing-custom-row {
  display: grid;
  grid-template-columns: 1fr 70px 90px auto;
  gap: 8px;
  background: var(--bg);
  padding: 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  margin-bottom: 16px;
  align-items: center;
}

/* ==========================================================================
   PIXEL-PERFECT MECHANIC BILLING & INVOICE MATRIX
   ========================================================================== */

.billing-builder-box {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 4px 16px -2px rgba(13, 27, 42, 0.05);
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .billing-builder-box {
    padding: 14px 10px;
  }
}

.billing-presets-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 16px;
}

.billing-preset-chip {
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: 20px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #1E293B;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
  user-select: none;
}

.billing-preset-chip:hover {
  background: #FFF7ED;
  border-color: #FF6A00;
  color: #C2410C;
  transform: translateY(-1px);
}

.billing-preset-chip .price-badge {
  background: #E2E8F0;
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  color: #0F172A;
}

/* Custom Item Add Card */
.billing-add-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 18px;
}

.billing-add-title {
  font-size: 11px;
  font-weight: 800;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.billing-add-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.billing-add-subgrid {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 8px;
}

.bm-input {
  width: 100%;
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: #0F172A;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease;
}

.bm-input:focus {
  border-color: #FF6A00;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.bm-add-btn {
  width: 100%;
  background: #0D1B2A;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

.bm-add-btn:hover {
  background: #1B2A4A;
}

/* Physical Handover 4-digit code verification */
.handover-box-wrapper {
  background: #FFFBEB;
  border: 1.5px solid #FCD34D;
  padding: 16px;
  border-radius: 14px;
  margin-bottom: 16px;
  box-sizing: border-box;
  width: 100%;
}

.handover-input-group {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}

.handover-input {
  flex: 1;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1.5px solid #FCD34D;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.15em;
  color: #0D1B2A;
  outline: none;
  transition: all 0.15s ease;
}

.handover-input:focus {
  border-color: #FF6A00;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.18);
}

.handover-verify-btn {
  flex-shrink: 0;
  white-space: nowrap;
  background: linear-gradient(135deg, #FF6A00 0%, #EA580C 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.3);
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.handover-verify-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 106, 0, 0.4);
}

/* Mobile-First Itemized Invoice List (Zero-Clipping Card Layout) */
.billing-matrix-card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.billing-item-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 2px 8px -2px rgba(13, 27, 42, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.billing-item-card:hover {
  border-color: #CBD5E1;
  box-shadow: 0 4px 12px -2px rgba(13, 27, 42, 0.08);
}

.bi-top-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.bi-desc-input {
  flex: 1;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: #0F172A;
  outline: none;
  transition: all 0.15s ease;
}

.bi-desc-input:focus {
  background: #FFFFFF;
  border-color: #FF6A00;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.bi-delete-btn {
  flex-shrink: 0;
  background: #FFF1F2;
  border: 1px solid #FECDD3;
  color: #E11D48;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.15s ease;
}

.bi-delete-btn:hover {
  background: #FFE4E6;
  border-color: #FDA4AF;
  transform: scale(1.05);
}

.bi-bottom-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px dashed #F1F5F9;
}

.bi-qty-stepper {
  display: inline-flex;
  align-items: center;
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  overflow: hidden;
}

.bi-stepper-btn {
  background: #E2E8F0;
  border: none;
  color: #1E293B;
  font-size: 15px;
  font-weight: 800;
  width: 28px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
  user-select: none;
}

.bi-stepper-btn:hover {
  background: #CBD5E1;
}

.bi-qty-input {
  width: 32px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: #0F172A;
  outline: none;
  padding: 0;
}

.bi-price-input-wrap {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  padding: 4px 8px;
  gap: 4px;
}

.bi-price-input-wrap:focus-within {
  border-color: #FF6A00;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.bi-currency {
  font-size: 13px;
  font-weight: 800;
  color: #64748B;
}

.bi-price-input {
  width: 60px;
  border: none;
  font-size: 13.5px;
  font-weight: 800;
  color: #0D1B2A;
  outline: none;
  padding: 0;
  text-align: right;
}

.bi-subtotal-tag {
  font-size: 12.5px;
  font-weight: 800;
  color: #64748B;
}

.bi-subtotal-tag strong {
  color: #FF6A00;
  font-size: 14.5px;
}

/* Total Card & Generate Bill CTA */
.billing-total-bar {
  background: #0D1B2A;
  color: #FFFFFF;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px -4px rgba(13, 27, 42, 0.25);
  margin-top: 18px;
  box-sizing: border-box;
  width: 100%;
}

.bt-total-group {
  display: flex;
  flex-direction: column;
}

.bt-label {
  font-size: 11px;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bt-amount {
  font-size: 24px;
  font-weight: 900;
  color: #FF6A00;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.bt-action-btn {
  background: linear-gradient(135deg, #FF6A00 0%, #EA580C 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 106, 0, 0.35);
  transition: all 0.15s ease;
  white-space: nowrap;
}

.bt-action-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 106, 0, 0.45);
}

.bt-action-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.receipt-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
}

/* ==========================================================================
   INSPECTION ADD-ON, SCHEDULING & PRICE SUMMARY
   ========================================================================== */

.compact-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  margin-bottom: 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-secondary);
}

.compact-trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.inspection-addon-card {
  background: #F8FAFC;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin: 16px 0;
  transition: all 0.2s ease;
  cursor: pointer;
}

.inspection-addon-card.selected {
  background: #FFF7ED;
  border-color: var(--brand-accent);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.1);
}

.inspection-addon-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.inspection-addon-title {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--brand-primary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.35;
}

.inspection-addon-title svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.inspection-addon-price {
  background: var(--brand-accent);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
}

.inspection-addon-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 10px;
}

.inspection-addon-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-secondary);
}

@media (max-width: 500px) {
  .inspection-addon-features {
    grid-template-columns: 1fr;
  }
}

.datetime-grid {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.date-pill-row, .time-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.slot-pill {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}

.slot-pill:hover {
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

.slot-pill.selected {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #FFFFFF;
}

.slot-pill .slot-sub {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 2px;
}

.slot-pill.selected .slot-sub {
  color: rgba(255, 255, 255, 0.85);
}

.price-summary-card {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin: 20px 0;
}

.price-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-secondary);
  padding: 4px 0;
}

.price-summary-row.total-row {
  border-top: 1px dashed var(--line);
  margin-top: 8px;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 900;
  color: var(--brand-primary);
}

.price-summary-row.total-row .total-amount {
  color: var(--brand-accent);
  font-size: 20px;
}

.price-summary-guarantee-box {
  background: #F8FAFC;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink-secondary);
}

.price-summary-guarantee-box strong {
  color: var(--brand-primary);
}

/* ==========================================================================
   RICH GENERAL SERVICE PACKAGE INCLUSION CARD
   ========================================================================== */

.general-service-package-card {
  background: #FFFFFF;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.2s ease;
  position: relative;
  cursor: pointer;
}

.general-service-package-card:hover {
  border-color: var(--brand-accent);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.08);
}

.general-service-package-card.selected {
  border-color: var(--brand-accent);
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.02) 0%, #FFFFFF 100%);
  box-shadow: 0 8px 28px rgba(255, 106, 0, 0.12);
}

.package-header-banner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.package-title-group {
  display: grid;
  gap: 6px;
}

.package-badge-popular {
  display: inline-block;
  background: #FEF3C7;
  color: #92400E;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.package-vehicle-pill {
  display: inline-block;
  background: var(--brand-primary);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.package-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.package-card-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--brand-primary);
  margin: 0;
}

.package-points-badge {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  font-size: 11.5px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
}

.package-price-box {
  text-align: right;
  flex-shrink: 0;
}

.package-price-val {
  font-size: 26px;
  font-weight: 900;
  color: var(--brand-accent);
  display: block;
  line-height: 1;
}

.package-price-sub {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.package-inclusions-content {
  padding: 16px 0;
}

.package-inclusions-label {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.package-inclusions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
}

.inclusion-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.inclusion-bullet-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #10B981;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}

.inclusion-bullet-title {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}

.inclusion-bullet-desc {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 1px;
  line-height: 1.35;
}

.package-expansion-container {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}

.package-expansion-btn {
  background: none;
  border: none;
  color: var(--brand-accent);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.15s ease;
}

.package-expansion-btn:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.package-detailed-checklist {
  background: #F8FAFC;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 12px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.checklist-category strong {
  display: block;
  font-size: 12.5px;
  color: var(--brand-primary);
  margin-bottom: 6px;
}

.checklist-category ul {
  margin: 0;
  padding-left: 16px;
  font-size: 12px;
  color: #334155;
  line-height: 1.5;
}

.package-select-footer {
  margin-top: 12px;
}

.other-services-accordion {
  margin-top: 14px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  background: #FAFAFA;
}

.other-services-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-primary);
  cursor: pointer;
  user-select: none;
}

.other-services-toggle small {
  font-size: 11.5px;
  color: var(--brand-accent);
  font-weight: 700;
}

@media (max-width: 640px) {
  .package-header-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .package-price-box {
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 4px;
  }
  .package-inclusions-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .checklist-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   GLOBAL-STANDARD TRACKING & HERO WHATSAPP ACTION (v2.6.7)
   ========================================================================== */

.public-ticket-container .btn.whatsapp {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.public-ticket-container .btn.whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.public-ticket-container .btn.whatsapp:active {
  transform: scale(0.98);
}

/* Hide floating WhatsApp support badge on public tracking page to eliminate visual competition */
body:has(.view-public-ticket) .whatsapp-float-btn,
.view-public-ticket ~ .whatsapp-float-btn,
.public-ticket-container ~ .whatsapp-float-btn {
  display: none !important;
}

/* ==========================================================================
   ANIMATED RUNNING BIKE LOADER (v2.6.9)
   ========================================================================== */

.bike-loading-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.bike-rider-motion {
  animation: bikeRideVibration 0.35s ease-in-out infinite alternate;
}

@keyframes bikeRideVibration {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-2px) rotate(-0.5deg); }
  100% { transform: translateY(1px) rotate(0.5deg); }
}

.bike-wheel {
  animation: spinWheel 0.45s linear infinite;
}

@keyframes spinWheel {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.bike-road-line {
  width: 140px;
  height: 3px;
  background: #E2E8F0;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}

.bike-road-dash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(90deg, #0D1B2A 0, #0D1B2A 14px, transparent 14px, transparent 28px);
  animation: roadMove 0.35s linear infinite;
}

@keyframes roadMove {
  from { transform: translateX(28px); }
  to { transform: translateX(0); }
}

.wind-line {
  animation: windSpeed 0.3s ease-in-out infinite alternate;
}

@keyframes windSpeed {
  0% { opacity: 0.3; transform: translateX(0); }
  100% { opacity: 1; transform: translateX(-3px); }
}

/* ==========================================================================
   LEAD PROGRESS TIMELINE & PAIRED CTAS (v2.7.3)
   ========================================================================== */

.lead-timeline-wrap {
  margin: 12px 0 16px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 10px;
}

.timeline-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 8px;
}

.timeline-stepper::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #CBD5E1;
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.timeline-node {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #94A3B8;
  color: #64748B;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: all 0.2s ease;
}

.timeline-step.completed .timeline-node {
  background: #10B981;
  border-color: #10B981;
  color: #FFFFFF;
}

.timeline-step.active .timeline-node {
  background: #FF6A00;
  border-color: #FF6A00;
  color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.2);
  transform: scale(1.1);
}

.timeline-label {
  font-size: 10px;
  font-weight: 700;
  color: #64748B;
  white-space: nowrap;
}

.timeline-step.active .timeline-label {
  color: #FF6A00;
  font-weight: 800;
}

.timeline-step.completed .timeline-label {
  color: #10B981;
}

.timeline-status-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: #334155;
}

.partner-actions-grid {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  align-items: center;
}

.partner-actions-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.partner-actions-stack .partner-actions-grid {
  margin-bottom: 0;
}

.partner-action-btn {
  flex: 1;
  min-height: 44px;
  height: auto;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-sizing: border-box;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: transform 0.1s cubic-bezier(0.2, 0.8, 0.4, 1), background-color 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.partner-action-btn:hover {
  transform: translateY(-1px);
}

.partner-action-btn:active {
  transform: translateY(1px) scale(0.97);
}

.partner-lead-alert-banner {
  background: linear-gradient(135deg, #FF6A00 0%, #EA580C 100%);
  color: #FFFFFF;
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(255, 106, 0, 0.3);
  animation: bannerPulse 2s infinite;
}

.partner-lead-alert-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.partner-lead-alert-badge {
  font-size: 10px;
  font-weight: 900;
  background: #FFFFFF;
  color: #EA580C;
  padding: 2px 6px;
  border-radius: 6px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.partner-lead-alert-title {
  font-size: 13px;
  font-weight: 800;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.partner-lead-alert-btn {
  background: #FFFFFF;
  border: none;
  color: #EA580C;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 14px;
  min-height: 38px;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.1s cubic-bezier(0.2, 0.8, 0.4, 1), box-shadow 0.12s ease;
}

.partner-lead-alert-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.partner-lead-alert-btn:active {
  transform: translateY(1px) scale(0.96);
}

.photo-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.photo-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: transform 0.1s cubic-bezier(0.2, 0.8, 0.4, 1), background-color 0.12s ease, border-color 0.12s ease;
  box-sizing: border-box;
}

.photo-action-btn:hover:not(:disabled) {
  background: #F1F5F9;
  border-color: #94A3B8;
  color: #0F172A;
}

.photo-action-btn:active:not(:disabled) {
  transform: translateY(1px) scale(0.97);
  background: #E2E8F0;
}

.photo-action-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.partner-logout-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #E2E8F0;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  min-height: 36px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.1s cubic-bezier(0.2, 0.8, 0.4, 1), background-color 0.12s ease, border-color 0.12s ease;
}

.partner-logout-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

.partner-logout-btn:active {
  transform: translateY(1px) scale(0.96);
}

.partner-tab-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.partner-tab-nav::-webkit-scrollbar {
  display: none;
}

.partner-tab-btn {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  color: #64748B;
  font-size: 13px;
  font-weight: 700;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s cubic-bezier(0.2, 0.8, 0.4, 1), background-color 0.12s ease, border-color 0.12s ease, color 0.12s ease;
  flex-shrink: 0;
}

.partner-tab-btn:active {
  transform: translateY(1px) scale(0.97);
}

.partner-tab-btn.active {
  background: #0D1B2A;
  color: #FFFFFF;
  border-color: #0D1B2A;
  box-shadow: 0 2px 8px rgba(13, 27, 42, 0.15);
}

.partner-tab-btn.has-leads {
  background: #FFF7ED;
  border-color: #FF6A00;
  color: #EA580C;
  font-weight: 800;
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.15);
}

.partner-tab-btn.has-leads.active {
  background: #FF6A00;
  color: #FFFFFF;
  border-color: #FF6A00;
  box-shadow: 0 2px 8px rgba(255, 106, 0, 0.35);
}

/* ==========================================================================
   SEO & DISCOVERABILITY ENHANCEMENTS — BANGALORE LOCAL PACK & RICH CONTENT
   ========================================================================== */

.seo-editorial-block {
  margin: 40px auto;
  max-width: var(--max-content);
  padding: 0 16px;
}

.seo-editorial-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .seo-editorial-card {
    padding: 44px 40px;
  }
}

.seo-card-header {
  margin-bottom: 28px;
}

.seo-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-accent-subtle);
  border: 1px solid var(--brand-accent-border);
  color: var(--brand-accent-hover);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  white-space: nowrap;
}

.seo-main-heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .seo-main-heading {
    font-size: 28px;
  }
}

.seo-lead-text {
  font-size: 15px;
  color: var(--ink-secondary);
  line-height: 1.6;
}

/* Locality & Coverage Chips */
.seo-locality-wrapper {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.seo-subheading {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.seo-locality-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.seo-locality-chip {
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  color: var(--ink-secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.15s ease;
}

.seo-locality-chip:hover {
  background: var(--panel);
  border-color: var(--brand-accent);
  color: var(--brand-accent);
}

.seo-locality-chip.active {
  background: var(--brand-accent-subtle);
  border-color: var(--brand-accent-border);
  color: var(--brand-accent-hover);
  font-weight: 700;
}

/* Brands Supported Grid */
.seo-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}

.seo-brand-card {
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  text-align: center;
}

.seo-brand-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 2px;
}

.seo-brand-models {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.35;
}

/* Semantic Crawlable FAQ Accordion */
.seo-faq-wrapper {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.seo-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.seo-faq-item:first-of-type {
  padding-top: 8px;
}

.seo-faq-item:last-of-type {
  border-bottom: none;
}

.seo-faq-summary {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--brand-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.15s ease;
}

.seo-faq-summary::-webkit-details-marker {
  display: none;
}

.seo-faq-summary:hover {
  color: var(--brand-accent);
}

.seo-faq-icon {
  font-size: 18px;
  color: var(--brand-accent);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

details[open] .seo-faq-icon {
  transform: rotate(45deg);
}

.seo-faq-answer {
  font-size: 14px;
  color: var(--ink-secondary);
  line-height: 1.6;
  margin-top: 10px;
  padding-right: 24px;
}

.seo-faq-answer strong {
  color: var(--brand-primary);
}

/* Feature & Inspection Checkpoint Grid */
.seo-checkpoints-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 18px 0 28px 0;
}

.seo-checkpoint-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
}

.seo-checkpoint-icon {
  color: var(--brand-success);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.seo-checkpoint-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 2px;
}

.seo-checkpoint-desc {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.4;
}

/* ==========================================================================
   INTERACTION LAYER & ACCESSIBILITY (MOTION & REDUCED MOTION PASS)
   ========================================================================== */

/* Form Control Ergonomics & Compositor Transitions */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 1px;
  border-color: var(--brand-accent) !important;
}

/* Accessible Interactive Press Feedback for Secondary Components */
.topbar-nav-link:active,
.mobile-nav-link:active,
.sidebar-role-btn:active,
.nav button:active,
.btn-admin-access:active,
.admin-subnav-btn:active {
  transform: translateY(1px) scale(0.98);
}

.seo-locality-chip:active,
.seo-faq-summary:active {
  transform: scale(0.98);
}

/* Modal Overlay & Sheet Transitions */
.modal-overlay,
.dialog-backdrop {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.modal-content,
.dialog-sheet {
  will-change: transform, opacity;
}

/* Comprehensive Prefers-Reduced-Motion Compliance */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .btn:hover,
  .btn:active,
  .btn-header-cta:hover,
  .btn-header-cta:active,
  .btn-menu-toggle:active,
  .partner-action-btn:hover,
  .partner-action-btn:active,
  .partner-lead-alert-btn:hover,
  .partner-lead-alert-btn:active,
  .partner-logout-btn:hover,
  .partner-logout-btn:active,
  .partner-tab-btn:active,
  .hero-chip:hover,
  .hero-chip:active,
  .photo-action-btn:active,
  .occ-kpi-card:hover,
  .occ-kpi-card:active {
    transform: none !important;
  }
}



