/* ==========================================================================
   KAAMKAZ HYPERLOCAL ANDROID OS - VERSION 10
   Design System & Styling
   ========================================================================== */

:root {
  /* Brand Palette */
  --kk-blue-primary: #0B63E5;
  --kk-blue-dark: #0744A3;
  --kk-blue-light: #E8F1FD;
  --kk-blue-surface: #F2F7FF;
  --kk-blue-soft: #DBEAFE;
  
  --kk-orange-primary: #FF6B00;
  --kk-orange-hover: #E55A00;
  --kk-orange-light: #FFF2E8;
  --kk-orange-glow: rgba(255, 107, 0, 0.25);

  --kk-whatsapp-green: #25D366;
  --kk-whatsapp-dark: #1EBE5D;
  --kk-success-green: #10B981;
  --kk-warning-amber: #F59E0B;
  --kk-danger-red: #EF4444;

  /* Neutral Surface & Text */
  --bg-app: #F8FAFD;
  --bg-card: #FFFFFF;
  --bg-card-subtle: #F1F5F9;
  --border-light: #E2E8F0;
  --border-subtle: #F1F5F9;

  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-sub: #94A3B8;
  --text-inverse: #FFFFFF;

  /* Elevation Shadows */
  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 6px 18px rgba(11, 99, 229, 0.08);
  --shadow-lg: 0 12px 32px rgba(11, 99, 229, 0.12);
  --shadow-floating: 0 16px 36px rgba(0, 0, 0, 0.16);

  /* Radii */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --anim-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --anim-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --anim-bounce: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Dark Theme Overrides */
body.dark-theme {
  --bg-app: #0B1120;
  --bg-card: #131E36;
  --bg-card-subtle: #1C294A;
  --border-light: #24355A;
  --border-subtle: #1E2D4E;
  --kk-blue-surface: #101B33;
  --kk-blue-light: #18274B;
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-sub: #64748B;
}

/* ==========================================================================
   Animated Brand Intro Splash Screen
   ========================================================================== */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 40%, #FFFFFF 0%, #F8FAFC 55%, #EEF2F6 100%);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s ease;
  user-select: none;
  cursor: pointer;
}

.splash-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  animation: splashContentEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.splash-logo-container {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.splash-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 0, 0.3);
  pointer-events: none;
}

.splash-pulse-ring.ring-1 {
  width: 150px;
  height: 150px;
  animation: splashPulse 2.4s infinite ease-out;
}

.splash-pulse-ring.ring-2 {
  width: 190px;
  height: 190px;
  border-color: rgba(11, 99, 229, 0.25);
  animation: splashPulse 2.4s infinite 0.6s ease-out;
}

.splash-pulse-ring.ring-3 {
  width: 230px;
  height: 230px;
  border-color: rgba(255, 107, 0, 0.15);
  animation: splashPulse 2.4s infinite 1.2s ease-out;
}

.splash-monogram-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 16px 40px rgba(11, 99, 229, 0.15), 0 0 0 5px rgba(255, 107, 0, 0.2), 0 0 25px rgba(11, 99, 229, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: logoFloat 3s ease-in-out infinite;
  padding: 10px;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.splash-monogram-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

.splash-brand-banner {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-logo-full {
  max-width: 270px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(11, 99, 229, 0.15));
  animation: splashContentEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.splash-tagline {
  font-size: 17px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

.splash-subtagline {
  font-size: 11px;
  font-weight: 800;
  color: #64748B;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.header-brand-logo {
  height: 32px;
  max-width: 160px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

.splash-loader-wrap {
  width: 200px;
  height: 6px;
  background: #E2E8F0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 32px;
  position: relative;
}

.splash-loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0B63E5, #FF6B00);
  border-radius: 10px;
  animation: splashLoaderFill 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.splash-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 9999px;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.splash-footer-badge i {
  color: #10B981;
}

@keyframes splashContentEntrance {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(15px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes splashPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes badgeBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

@keyframes splashLoaderFill {
  0% {
    width: 5%;
  }
  50% {
    width: 65%;
  }
  100% {
    width: 100%;
  }
}

/* Base Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background-color: var(--bg-app);
  color: var(--text-main);
  overflow-x: hidden;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

h1, h2, h3, h4, .logo-kaam, .logo-kaz {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  outline: none;
}

/* ==========================================================================
   Native Mobile Viewport Container
   ========================================================================== */
.app-viewport-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: stretch;
  background: var(--bg-app);
  margin: 0;
  padding: 0;
}

.android-phone-frame {
  width: 100%;
  max-width: 540px;
  min-height: 100vh;
  background: var(--bg-app);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.08);
}

@media (max-width: 540px) {
  .android-phone-frame {
    max-width: 100%;
    box-shadow: none;
  }
}

/* In-App Notification Toast */
.app-notification-drawer {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  width: calc(100% - 32px);
  max-width: 480px;
  background: #0F172A;
  color: #FFFFFF;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-floating);
  z-index: 99999;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
}

.app-notification-drawer.active {
  transform: translateX(-50%) translateY(0);
}

.notif-content {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.notif-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--kk-orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.notif-text {
  flex: 1;
}

.notif-text h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.notif-text p {
  font-size: 12px;
  color: #CBD5E1;
}

.notif-time {
  font-size: 11px;
  color: #94A3B8;
  align-self: flex-start;
}

/* App Container and Screens */
.app-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
}

.app-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  flex-direction: column;
}

.app-screen.active {
  display: flex;
}

/* ==========================================================================
   MAP SCREEN (Exact Match with Reference Image)
   ========================================================================== */
.map-top-header {
  background: var(--bg-card);
  padding: 10px 16px 8px;
  box-shadow: 0 4px 16px rgba(11, 99, 229, 0.06);
  z-index: 50;
  border-bottom: 1px solid var(--border-subtle);
}

.header-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* Brand Logo */
.kaamkaz-logo-wrap {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.kaamkaz-logo-text {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.5px;
}

.logo-kaam {
  color: var(--kk-orange-primary);
}

.logo-kaz {
  color: var(--kk-blue-primary);
}

.logo-tagline {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--kk-orange-primary);
  margin-top: 2px;
}

/* Location Selector Pill */
.location-picker-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--kk-blue-surface);
  border: 1px solid var(--border-light);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  transition: var(--anim-fast);
}

.location-picker-btn:hover {
  background: var(--kk-blue-light);
}

.loc-icon {
  color: var(--kk-blue-primary);
  font-size: 14px;
}

.loc-text {
  max-width: 130px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.loc-arrow {
  color: var(--text-muted);
  font-size: 11px;
}

/* User Mascot Circle */
.user-avatar-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--kk-blue-light);
  padding: 2px;
  border: 2px solid var(--kk-blue-primary);
}

.avatar-mascot-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #FFFFFF;
}

.mascot-img-sm {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.active-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: var(--kk-success-green);
  border: 2px solid #FFFFFF;
  border-radius: 50%;
}

/* Search Bar (What do you need?) */
.search-bar-wrap {
  margin-bottom: 10px;
}

.search-input-box {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(11, 99, 229, 0.05);
  cursor: pointer;
  transition: var(--anim-fast);
}

.search-input-box:hover {
  border-color: var(--kk-blue-primary);
}

.search-icon {
  color: var(--text-muted);
  font-size: 15px;
}

.search-input-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  background: transparent;
  cursor: pointer;
}

.search-divider {
  width: 1px;
  height: 18px;
  background: var(--border-light);
}

.mic-btn {
  color: var(--kk-blue-primary);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.mic-btn:hover {
  transform: scale(1.15);
}

/* Categories Scroll Row */
.categories-scroll-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 -16px 8px -16px;
  padding: 0 16px;
}

.categories-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.categories-scroll-list {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 4px 2px;
}

.category-item-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  width: 62px;
  transition: transform 0.2s var(--anim-bounce);
}

.category-item-card:hover, .category-item-card.active {
  transform: translateY(-2px);
}

.category-mascot-box {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--kk-blue-surface);
  border: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--anim-fast);
}

.category-item-card.active .category-mascot-box {
  border-color: var(--kk-blue-primary);
  background: var(--kk-blue-light);
  box-shadow: 0 4px 12px rgba(11, 99, 229, 0.2);
}

.category-mascot-box img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.category-mascot-box.more-box {
  background: #F1F5F9;
  color: var(--kk-blue-primary);
  font-size: 20px;
}

.category-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-main);
  text-align: center;
  margin-top: 5px;
  white-space: nowrap;
}

/* Filter Chips Bar */
.filter-chips-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 -16px;
  padding: 2px 16px;
}

.filter-chips-row::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: var(--anim-fast);
}

.filter-chip.active {
  background: var(--kk-blue-primary);
  color: #FFFFFF;
  border-color: var(--kk-blue-primary);
  box-shadow: 0 4px 12px rgba(11, 99, 229, 0.25);
}

.filter-chip.active i {
  color: #FFFFFF;
}

.filter-chip i {
  color: var(--kk-blue-primary);
  font-size: 12px;
}

.chip-arrow {
  font-size: 9px;
}

/* ==========================================================================
   Map Viewport & Leaflet Styling
   ========================================================================== */
.map-viewport {
  flex: 1;
  position: relative;
  width: 100%;
}

.leaflet-map-canvas {
  width: 100%;
  height: 100%;
  background: #E5EFFB;
  z-index: 10;
}

/* Hide Default Leaflet Zoom & Attribution for Clean UI */
.leaflet-control-zoom, .leaflet-control-attribution {
  display: none !important;
}

/* Custom Leaflet Map Markers: Mascot Teardrop Pins */
.kaamkaz-mascot-marker {
  position: relative;
  width: 52px;
  height: 64px;
  cursor: pointer;
  transition: transform 0.25s var(--anim-bounce);
}

.kaamkaz-mascot-marker:hover, .kaamkaz-mascot-marker.highlighted {
  transform: scale(1.18) translateY(-6px);
  z-index: 1000 !important;
}

.marker-teardrop {
  width: 50px;
  height: 50px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 1px;
}

/* Pin Color Variations matching reference image */
.marker-teardrop.orange-pin {
  background: #FF7A00;
  border: 2.5px solid #FFFFFF;
}

.marker-teardrop.blue-pin {
  background: #0B63E5;
  border: 2.5px solid #FFFFFF;
}

.marker-teardrop.cyan-pin {
  background: #0284C7;
  border: 2.5px solid #FFFFFF;
}

.marker-teardrop.emerald-pin {
  background: #10B981;
  border: 2.5px solid #FFFFFF;
}

.marker-teardrop.amber-pin {
  background: #F59E0B;
  border: 2.5px solid #FFFFFF;
}

.marker-mascot-inner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transform: rotate(45deg);
  overflow: hidden;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marker-mascot-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* User "You Are Here" Marker */
.user-location-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.user-pulse-dot {
  width: 18px;
  height: 18px;
  background: var(--kk-blue-primary);
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(11, 99, 229, 0.25);
  animation: userRadar 2s infinite;
}

.user-label-pill {
  margin-top: 6px;
  background: var(--kk-blue-primary);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

@keyframes userRadar {
  0% { box-shadow: 0 0 0 0 rgba(11, 99, 229, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(11, 99, 229, 0); }
  100% { box-shadow: 0 0 0 0 rgba(11, 99, 229, 0); }
}

/* Floating Map Tools */
.map-floating-actions {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  pointer-events: none;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.map-action-btn {
  pointer-events: auto;
  background: var(--bg-card);
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-light);
  transition: var(--anim-fast);
}

.map-action-btn:hover {
  background: var(--kk-blue-surface);
}

.map-action-btn i {
  color: var(--kk-blue-primary);
}

.map-side-tools {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map-tool-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 15px;
  transition: var(--anim-fast);
}

.map-tool-icon:hover {
  background: var(--kk-blue-surface);
  color: var(--kk-blue-primary);
}

/* Live Moving Courier Marker on Leaflet */
.courier-marker-wrapper {
  background: transparent !important;
  border: none !important;
}

.live-moving-courier-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.5s ease-out;
}

.courier-bubble {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0B63E5;
  border: 3px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 18px;
  box-shadow: 0 6px 18px rgba(11, 99, 229, 0.45);
  position: relative;
}

.courier-pulse-wave {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #0B63E5;
  animation: courierWave 1.8s infinite;
}

@keyframes courierWave {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}

.courier-label-tag {
  margin-top: 4px;
  background: #0F172A;
  color: #FFFFFF;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 4px;
}

.courier-label-tag strong {
  color: #38BDF8;
}

/* Live Tracking Mini Pill on Map */
.map-live-tracking-pill {
  position: absolute;
  bottom: 240px;
  left: 16px;
  right: 16px;
  background: #0F172A;
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-floating);
  z-index: 45;
  cursor: pointer;
  animation: slideUp 0.3s ease-out;
}

.pulse-ring {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--kk-success-green);
  box-shadow: 0 0 10px var(--kk-success-green);
}

.tracking-mini-info strong {
  display: block;
  font-size: 13px;
}

.tracking-mini-info small {
  color: #94A3B8;
  font-size: 11px;
}

/* ==========================================================================
   Draggable Bottom Sheet: "Services near you"
   ========================================================================== */
.bottom-sheet-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.12);
  z-index: 45;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  max-height: 85%;
}

.bottom-sheet-container.collapsed {
  height: 220px;
}

.bottom-sheet-container.expanded {
  height: 600px;
}

.sheet-drag-handle-zone {
  padding: 10px 0 6px;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.drag-bar {
  width: 44px;
  height: 5px;
  border-radius: 3px;
  background: #CBD5E1;
}

.sheet-header {
  padding: 0 18px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sheet-title-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sheet-title-group h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
}

.results-badge {
  background: var(--kk-blue-light);
  color: var(--kk-blue-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.see-all-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--kk-blue-primary);
  font-size: 13px;
  font-weight: 700;
}

/* Horizontal & Vertical Cards Container */
.services-cards-wrapper {
  flex: 1;
  padding: 6px 18px 12px;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  gap: 14px;
  scrollbar-width: none;
}

.services-cards-wrapper::-webkit-scrollbar {
  display: none;
}

.bottom-sheet-container.expanded .services-cards-wrapper {
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
}

/* Individual Professional Card */
.pro-card {
  min-width: 280px;
  max-width: 280px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--anim-fast);
  flex-shrink: 0;
}

.bottom-sheet-container.expanded .pro-card {
  min-width: 100%;
  max-width: 100%;
}

.pro-card:hover, .pro-card.active-selected {
  border-color: var(--kk-blue-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pro-card-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pro-mascot-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--kk-blue-surface);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.pro-mascot-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.pro-meta {
  flex: 1;
}

.pro-title-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pro-title-row h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}

.verified-icon {
  color: var(--kk-blue-primary);
  font-size: 13px;
}

.pro-rating-dist-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 3px 0;
  font-size: 12px;
}

.pro-rating {
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 3px;
}

.pro-rating i {
  color: #F59E0B;
}

.pro-dist {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 3px;
}

.pro-tags-row {
  display: flex;
  gap: 6px;
  margin: 6px 0 10px;
  flex-wrap: wrap;
}

.tag-pill {
  background: var(--kk-blue-surface);
  color: #0369A1;
  border: 1px solid #BAE6FD;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* Card Action Buttons (Call & WhatsApp) */
.pro-card-actions {
  display: flex;
  gap: 8px;
}

.action-btn-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--kk-blue-surface);
  color: var(--kk-blue-primary);
  border: 1.5px solid var(--kk-blue-soft);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  transition: var(--anim-fast);
}

.action-btn-call:hover {
  background: var(--kk-blue-light);
}

.action-btn-whatsapp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  background: #ECFDF5;
  color: #059669;
  border: 1.5px solid #A7F3D0;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  transition: var(--anim-fast);
}

.action-btn-whatsapp:hover {
  background: #D1FAE5;
}

/* Banner: Can't Find What You Need? */
.cant-find-banner {
  margin: 0 18px 10px;
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-lg);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--anim-fast);
}

.cant-find-banner:hover {
  border-color: var(--kk-orange-primary);
}

.banner-mascot-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.banner-content {
  flex: 1;
}

.banner-content h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2px;
}

.banner-content p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

.banner-cta-btn {
  background: var(--kk-orange-primary);
  color: #FFFFFF;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 10px var(--kk-orange-glow);
}

/* ==========================================================================
   Android Bottom Navigation Bar
   ========================================================================== */
.android-bottom-nav {
  height: 64px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
  z-index: 90;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  color: var(--text-muted);
  position: relative;
  transition: var(--anim-fast);
  padding: 6px 0;
}

.nav-icon-wrap {
  position: relative;
  font-size: 18px;
}

.nav-label {
  font-size: 11px;
  font-weight: 700;
}

.nav-item.active {
  color: var(--kk-blue-primary);
}

.active-indicator-bar {
  position: absolute;
  bottom: -4px;
  width: 24px;
  height: 3px;
  background: var(--kk-blue-primary);
  border-radius: 2px;
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--kk-orange-primary);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   MODALS, SHEETS & DETAIL VIEWS
   ========================================================================== */
.app-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  justify-content: flex-end;
  align-items: flex-end;
}

.app-modal-overlay.active {
  display: flex;
}

.modal-card-sheet {
  width: 100%;
  background: var(--bg-card);
  border-radius: 28px 28px 0 0;
  padding: 20px 20px 30px;
  box-shadow: var(--shadow-floating);
  max-height: 90%;
  overflow-y: auto;
  animation: slideUpModal 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.modal-card-sheet.full-height-sheet {
  height: 94%;
  max-height: 94%;
  padding: 16px 18px 20px;
}

@keyframes slideUpModal {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.modal-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.modal-sheet-header h3 {
  font-size: 18px;
  font-weight: 800;
}

.close-text-btn {
  font-size: 18px;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.app-input-select, .app-input-textarea, .chat-input-bar input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  background: var(--bg-card);
  font-size: 14px;
  color: var(--text-main);
  outline: none;
}

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

.choice-chip {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-light);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
}

.choice-chip.active {
  background: var(--kk-blue-primary);
  color: #FFFFFF;
  border-color: var(--kk-blue-primary);
}

.primary-action-btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: var(--kk-orange-primary);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 18px var(--kk-orange-glow);
  transition: var(--anim-fast);
}

.primary-action-btn:hover {
  background: var(--kk-orange-hover);
}

.primary-action-btn.blue-action {
  background: var(--kk-blue-primary);
  box-shadow: 0 6px 18px rgba(11, 99, 229, 0.25);
}

/* ==========================================================================
   Detailed Profile Modal Styles
   ========================================================================== */
.sheet-top-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.circle-close-btn, .circle-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 15px;
}

.top-actions {
  display: flex;
  gap: 8px;
}

.pro-detail-scrollable {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 80px;
}

.pro-hero-profile-card {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: center;
}

.hero-mascot-avatar {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: var(--kk-blue-light);
  border: 2px solid var(--kk-blue-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mascot-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-profile-meta h2 {
  font-size: 20px;
  font-weight: 800;
}

.hero-profile-meta .pro-service-title {
  color: var(--kk-blue-primary);
  font-weight: 700;
  font-size: 13px;
  margin: 2px 0 6px;
}

.quick-stats-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.stat-box {
  flex: 1;
  background: var(--kk-blue-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 8px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
}

.stat-box small {
  font-size: 11px;
  color: var(--text-muted);
}

/* Portfolio Photos Grid */
.portfolio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 10px 0 16px;
}

.gallery-thumb {
  height: 80px;
  border-radius: var(--radius-sm);
  background: #CBD5E1;
  position: relative;
  overflow: hidden;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  font-size: 9px;
  padding: 2px 4px;
  border-radius: 4px;
}

/* Sticky Contact Bar at Bottom of Profile */
.sticky-contact-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  padding: 12px 18px 16px;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 10px;
}

.sticky-contact-bar .action-btn-call, 
.sticky-contact-bar .action-btn-whatsapp {
  padding: 12px 16px;
  font-size: 14px;
}

.btn-confirm-need {
  flex: 2;
  background: var(--kk-orange-primary);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 14px var(--kk-orange-glow);
}

/* ==========================================================================
   Live Tracking Sheet & Stepper
   ========================================================================== */
.tracking-sheet {
  background: var(--bg-card);
}

.tracking-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.tracking-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ECFDF5;
  color: #059669;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.tracking-eta-block {
  text-align: center;
  background: var(--kk-blue-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 14px;
  margin-bottom: 16px;
}

.eta-big {
  font-size: 32px;
  font-weight: 900;
  font-family: 'Outfit';
  color: var(--kk-blue-primary);
}

.eta-sub {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

.tracking-pro-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-card-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.pro-avatar-ring {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--kk-blue-primary);
  overflow: hidden;
}

.pro-avatar-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tracking-pro-card .pro-info {
  flex: 1;
}

.tracking-pro-card .pro-info h4 {
  font-size: 14px;
  font-weight: 700;
}

.tracking-pro-card .pro-info p {
  font-size: 11px;
  color: var(--text-muted);
}

/* Stepper Timeline */
.tracking-timeline-stepper {
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.timeline-step {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #E2E8F0;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  z-index: 2;
}

.timeline-step.completed .step-dot {
  background: var(--kk-success-green);
  color: #FFFFFF;
}

.timeline-step.active .step-dot {
  background: var(--kk-blue-primary);
  color: #FFFFFF;
  box-shadow: 0 0 0 4px var(--kk-blue-soft);
}

.step-label strong {
  display: block;
  font-size: 13px;
}

.step-label small {
  color: var(--text-muted);
  font-size: 11px;
}

.tracking-sim-controls {
  margin-top: 10px;
}

.sim-btn {
  width: 100%;
  padding: 12px;
  background: var(--kk-blue-light);
  color: var(--kk-blue-primary);
  border: 1.5px dashed var(--kk-blue-primary);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ==========================================================================
   In-App Chat Styles
   ========================================================================== */
.chat-sheet {
  padding: 10px 14px 14px;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.chat-user-header {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar-mascot-sm {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--kk-blue-light);
}

.avatar-mascot-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-meta h4 {
  font-size: 14px;
  font-weight: 700;
}

.online-status {
  font-size: 11px;
  color: var(--kk-success-green);
  display: flex;
  align-items: center;
  gap: 4px;
}

.green-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kk-success-green);
}

.chat-messages-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 14px 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.4;
}

.chat-bubble.sent {
  align-self: flex-end;
  background: var(--kk-blue-primary);
  color: #FFFFFF;
  border-bottom-right-radius: 2px;
}

.chat-bubble.received {
  align-self: flex-start;
  background: var(--bg-card-subtle);
  color: var(--text-main);
  border-bottom-left-radius: 2px;
}

.chat-quick-prompts {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 6px 0;
  scrollbar-width: none;
}

.chat-quick-prompts::-webkit-scrollbar {
  display: none;
}

.prompt-chip {
  background: var(--kk-blue-surface);
  border: 1px solid var(--border-light);
  color: var(--kk-blue-primary);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
}

.chat-attach-btn, .chat-send-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.chat-send-btn {
  background: var(--kk-blue-primary);
  color: #FFFFFF;
}

/* ==========================================================================
   Rating & Review Modal
   ========================================================================== */
.rating-body {
  text-align: center;
}

.rating-mascot {
  width: 64px;
  height: 64px;
  margin-bottom: 6px;
}

.star-rating-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 32px;
  color: #CBD5E1;
  margin: 14px 0 6px;
  cursor: pointer;
}

.star-item.active {
  color: #F59E0B;
}

.rating-score-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--kk-orange-primary);
  margin-bottom: 14px;
}

/* ==========================================================================
   HOME SCREEN FEED, EXPLORE & PROFILE TAB STYLES
   ========================================================================== */
.home-top-header, .explore-top-header, .requests-top-header, .profile-top-header {
  background: var(--bg-card);
  padding: 14px 18px 12px;
  border-bottom: 1px solid var(--border-light);
}

.home-search-pill {
  margin-top: 10px;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
}

.home-search-pill .mic-icon {
  margin-left: auto;
  color: var(--kk-blue-primary);
}

.home-content-scroll, .explore-content-scroll, .requests-content-scroll, .profile-content-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 16px 18px 40px;
}

/* Hero Banners Interactive Carousel */
.hero-banners-carousel-container {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 28px rgba(11, 99, 229, 0.12);
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.banner-slide-card {
  min-width: 100%;
  position: relative;
  height: 180px;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.banner-slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.banner-slide-card:hover img {
  transform: scale(1.02);
}

.banner-glass-pill {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
}

.pill-badge {
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.3px;
}

.carousel-dots-row {
  position: absolute;
  bottom: 12px;
  right: 14px;
  display: flex;
  gap: 6px;
  z-index: 5;
  background: rgba(15, 23, 42, 0.6);
  padding: 4px 8px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.dot-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.25s ease;
}

.dot-indicator.active {
  width: 18px;
  border-radius: 4px;
  background: var(--kk-orange-primary);
  box-shadow: 0 0 6px var(--kk-orange-primary);
}

.emergency-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 12px 0 24px;
}

.quick-service-box {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--anim-fast);
}

.quick-service-box:hover {
  border-color: var(--kk-blue-primary);
  transform: translateY(-2px);
}

.quick-service-box img {
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
}

.quick-service-box span {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-main);
}

.quick-service-box small {
  font-size: 9px;
  color: #059669;
  font-weight: 600;
}

.how-it-works-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin: 20px 0;
}

.how-it-works-card h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
}

.works-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--kk-blue-light);
  color: var(--kk-blue-primary);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-desc strong {
  display: block;
  font-size: 13px;
}

.step-desc p {
  font-size: 12px;
  color: var(--text-muted);
}

/* Explore Grid */
.explore-group {
  margin-bottom: 24px;
}

.group-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-main);
}

.group-header i {
  color: var(--kk-blue-primary);
}

.category-tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.category-tile {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--anim-fast);
}

.category-tile:hover {
  border-color: var(--kk-blue-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.category-tile img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

.category-tile h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}

.category-tile p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
  margin-top: 2px;
}

/* Requests Screen Tabs */
.requests-tab-switcher {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.req-tab-btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-light);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

.req-tab-btn.active {
  background: var(--kk-blue-primary);
  color: #FFFFFF;
  border-color: var(--kk-blue-primary);
}

.request-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.req-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.req-status-pill {
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.req-status-pill.status-active {
  background: #EFF6FF;
  color: var(--kk-blue-primary);
}

.req-status-pill.status-completed {
  background: #ECFDF5;
  color: #059669;
}

/* Profile Screen Items */
.profile-user-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.profile-avatar-box {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--kk-blue-light);
  border: 2px solid var(--kk-blue-primary);
  overflow: hidden;
}

.profile-avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.edit-avatar-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: var(--kk-orange-primary);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-callout-card {
  background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
  border: 1.5px solid #FED7AA;
  border-radius: var(--radius-lg);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 20px;
}

.partner-callout-card .callout-icon img {
  width: 44px;
  height: 44px;
}

.partner-callout-card h4 {
  font-size: 14px;
  font-weight: 800;
  color: #9A3412;
}

.partner-callout-card p {
  font-size: 11px;
  color: #C2410C;
}

.profile-menu-section {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 8px 12px;
  margin-bottom: 16px;
}

.menu-section-heading {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 6px 4px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 6px;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
}

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

.item-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.bg-blue { background: #EFF6FF; color: #2563EB; }
.bg-orange { background: #FFF7ED; color: #EA580C; }
.bg-green { background: #ECFDF5; color: #059669; }
.bg-purple { background: #FAF5FF; color: #9333EA; }
.bg-teal { background: #F0FDFA; color: #0D9488; }
.bg-gray { background: #F1F5F9; color: #475569; }

.item-label strong {
  display: block;
  font-size: 13px;
  color: var(--text-main);
}

.item-label small {
  font-size: 11px;
  color: var(--text-muted);
}

.menu-item i.fa-chevron-right {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-sub);
}

.app-version-footer {
  text-align: center;
  padding: 20px 0 10px;
  color: var(--text-sub);
  font-size: 12px;
}

/* Voice Wave Animation */
.voice-search-sheet {
  text-align: center;
  padding: 40px 20px;
  align-items: center;
}

.voice-ripple-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--kk-blue-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 14px rgba(11, 99, 229, 0.2), 0 0 0 28px rgba(11, 99, 229, 0.1);
  animation: wavePulse 1.6s infinite ease-in-out;
}

@keyframes wavePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(11, 99, 229, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 24px rgba(11, 99, 229, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(11, 99, 229, 0); }
}

.voice-spoken-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--kk-orange-primary);
  margin: 10px 0 20px;
}

/* ==========================================================================
   TOP STORIES TRAY (Social Media Story Format)
   ========================================================================== */
.stories-section {
  padding: 10px 14px 6px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 10px;
}

.stories-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 0 2px;
}

.stories-section-header span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.stories-section-header span i {
  color: #FF6B00;
}

.stories-section-header small {
  font-size: 11px;
  color: var(--kk-blue-primary);
  font-weight: 700;
}

.stories-scroll-tray {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.stories-scroll-tray::-webkit-scrollbar {
  display: none;
}

.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  width: 68px;
  text-align: center;
  transition: transform 0.2s ease;
}

.story-item:active {
  transform: scale(0.94);
}

.story-avatar-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  padding: 2.5px;
  background: linear-gradient(135deg, #FF6B00 0%, #F59E0B 40%, #0B63E5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.2);
  animation: storyRingPulse 3s infinite ease-in-out;
}

@keyframes storyRingPulse {
  0%, 100% { box-shadow: 0 4px 10px rgba(255, 107, 0, 0.2); }
  50% { box-shadow: 0 4px 16px rgba(11, 99, 229, 0.35); }
}

.story-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #FFFFFF;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
}

.story-avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.story-badge-pro {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: #10B981;
  color: #FFFFFF;
  font-size: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.story-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 68px;
}

.story-dist-tag {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--kk-blue-primary);
  line-height: 1.1;
}

/* ==========================================================================
   ATTENTION BANNER CALLOUT (No Platform Fees)
   ========================================================================== */
.attention-callout-card {
  margin: 10px 14px 14px;
  background: linear-gradient(135deg, #0B63E5 0%, #0744A3 100%);
  border-radius: 16px;
  padding: 14px 16px;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(11, 99, 229, 0.22);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.attention-callout-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.attention-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FF6B00;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 9999px;
  margin-bottom: 8px;
  box-shadow: 0 2px 6px rgba(255, 107, 0, 0.4);
}

.attention-callout-card h4 {
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
  line-height: 1.3;
}

.attention-callout-card p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
  margin-bottom: 8px;
}

.attention-highlights-row {
  display: flex;
  gap: 12px;
  font-size: 10.5px;
  font-weight: 700;
  color: #93C5FD;
}

.attention-highlights-row span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.attention-highlights-row span i {
  color: #38BDF8;
}

/* ==========================================================================
   TACTILE CALCULATOR-STYLE METALLIC BUTTONS (Clean Modern Symbols)
   ========================================================================== */
.tactile-buttons-section {
  padding: 0 14px 16px;
}

.section-headline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.section-headline-row h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-headline-row small {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.tactile-calc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.tactile-calc-btn {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 50%, #E2E8F0 100%);
  border: 1px solid #CBD5E1;
  border-bottom: 3.5px solid #94A3B8;
  border-radius: 14px;
  padding: 12px 6px 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05), inset 0 1px 0 #FFFFFF;
  transition: all 0.08s ease;
  position: relative;
  outline: none;
}

.tactile-calc-btn:hover {
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 50%, #CBD5E1 100%);
  border-color: #94A3B8;
}

.tactile-calc-btn:active {
  transform: translateY(3px);
  border-bottom-width: 1px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.08);
}

.calc-icon-symbol {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 6px;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 2px 5px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease;
}

.tactile-calc-btn:hover .calc-icon-symbol {
  transform: scale(1.08);
}

/* Custom metallic gradient symbols */
.sym-electrician {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #FFFFFF;
}

.sym-plumber {
  background: linear-gradient(135deg, #06B6D4 0%, #0284C7 100%);
  color: #FFFFFF;
}

.sym-doctor {
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
  color: #FFFFFF;
}

.sym-tutor {
  background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
  color: #FFFFFF;
}

.sym-chef {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
}

.sym-ac {
  background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  color: #FFFFFF;
}

.sym-carpenter {
  background: linear-gradient(135deg, #B45309 0%, #78350F 100%);
  color: #FFFFFF;
}

.sym-painter {
  background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%);
  color: #FFFFFF;
}

.calc-btn-title {
  font-size: 11px;
  font-weight: 800;
  color: #1E293B;
  line-height: 1.2;
  margin-bottom: 2px;
}

.calc-btn-sub {
  font-size: 9px;
  font-weight: 700;
  color: #64748B;
}

/* ==========================================================================
   1-LINE STEPS ROADMAP (App Usage Guide)
   ========================================================================== */
.steps-roadmap-wrapper {
  margin: 0 14px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: var(--shadow-sm);
}

.steps-roadmap-title {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.6px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.steps-roadmap-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.roadmap-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-main);
  flex: 1;
}

.roadmap-step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--kk-blue-primary);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.roadmap-step.step-2 .roadmap-step-num {
  background: #FF6B00;
}

.roadmap-step.step-3 .roadmap-step-num {
  background: #10B981;
}

.roadmap-step span {
  line-height: 1.2;
  font-size: 10.5px;
}

.roadmap-arrow {
  color: #CBD5E1;
  font-size: 10px;
  margin: 0 4px;
  flex-shrink: 0;
}

/* ==========================================================================
   DUAL ACTION CARDS (Helpline & Become a Vendor)
   ========================================================================== */
.actions-dual-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 14px 16px;
}

.action-tile-helpline,
.action-tile-vendor {
  border-radius: 16px;
  padding: 13px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  user-select: none;
  text-decoration: none;
}

.action-tile-helpline:active,
.action-tile-vendor:active {
  transform: scale(0.97);
}

.action-tile-helpline {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-tile-vendor {
  background: linear-gradient(135deg, #FF6B00 0%, #EA580C 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.action-tile-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.action-tile-text h4 {
  font-size: 12.5px;
  font-weight: 800;
  margin-bottom: 2px;
  color: #FFFFFF;
}

.action-tile-text p {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.95;
  color: #FFFFFF;
}

/* ==========================================================================
   SARCASTIC ANTI-AGGREGATOR BANNER
   ========================================================================== */
.anti-aggregator-banner {
  margin: 10px 14px 18px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border: 1.5px solid #334155;
  border-radius: 18px;
  padding: 16px;
  color: #FFFFFF;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.anti-aggregator-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.anti-aggregator-tag {
  background: rgba(239, 68, 68, 0.2);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 9999px;
  text-transform: uppercase;
}

.anti-aggregator-banner h4 {
  font-size: 15px;
  font-weight: 800;
  color: #F8FAFC;
  margin-bottom: 6px;
  line-height: 1.3;
}

.anti-aggregator-banner p {
  font-size: 12px;
  color: #94A3B8;
  line-height: 1.45;
  margin-bottom: 12px;
}

.anti-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.anti-badge-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 4px 10px;
  font-size: 10.5px;
  font-weight: 700;
  color: #38BDF8;
  display: flex;
  align-items: center;
  gap: 5px;
}

.anti-badge-item i {
  color: #10B981;
}

/* ==========================================================================
   STORY PRO PROFILE MODAL (with Embedded Live Proximity Map)
   ========================================================================== */
.story-pro-sheet {
  max-width: 480px;
  border-radius: 24px 24px 0 0;
  background: var(--bg-card);
  max-height: 90vh;
  overflow-y: auto;
  padding-bottom: 24px;
}

.story-pro-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  background: var(--bg-card);
  z-index: 10;
}

.story-pro-header-bar h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.story-pro-top-hero {
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--bg-card-subtle);
  border-bottom: 1px solid var(--border-light);
}

.story-pro-avatar-lg {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid #FF6B00;
  background: #FFFFFF;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
  flex-shrink: 0;
}

.story-pro-avatar-lg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.story-pro-meta-lg h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2px;
}

.story-pro-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--kk-blue-light);
  color: var(--kk-blue-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
  margin-bottom: 4px;
}

.story-pro-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

.story-pro-rating-row span.rating-star {
  color: #F59E0B;
}

.story-proximity-box {
  padding: 14px 16px;
}

.story-proximity-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--text-main);
}

.story-proximity-title span.dist-badge {
  background: #DCFCE7;
  color: #15803D;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 9999px;
  font-weight: 800;
}

.story-mini-map-container {
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.story-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px 16px 6px;
}

.story-btn-call {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.story-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.story-btn-chat {
  background: linear-gradient(135deg, #0B63E5 0%, #0744A3 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(11, 99, 229, 0.25);
}

.story-btn-askcall {
  background: linear-gradient(135deg, #FF6B00 0%, #EA580C 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

/* ==========================================================================
   VENDOR REGISTRATION WIZARD MODAL (5-Step Onboarding)
   ========================================================================== */
.vendor-wizard-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg-card-subtle);
  border-bottom: 1px solid var(--border-light);
}

.wizard-step-node {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #CBD5E1;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.2s ease;
}

.wizard-step-node.active {
  background: var(--kk-orange-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.25);
}

.wizard-step-node.completed {
  background: #10B981;
}

.wizard-divider-line {
  flex: 1;
  height: 2px;
  background: #E2E8F0;
  margin: 0 6px;
}

.wizard-step-content {
  padding: 18px 16px;
}

.wizard-step-content h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.wizard-step-content p.step-subtext {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.otp-box-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 16px 0;
}

.otp-digit-input {
  width: 50px;
  height: 54px;
  border-radius: 12px;
  border: 2px solid var(--border-light);
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  color: var(--text-main);
  background: var(--bg-card);
  transition: border-color 0.2s ease;
}

.otp-digit-input:focus {
  border-color: var(--kk-orange-primary);
  outline: none;
}

.file-upload-dropzone {
  border: 2px dashed #CBD5E1;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  background: var(--bg-card-subtle);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  margin-bottom: 12px;
}

.file-upload-dropzone:hover {
  border-color: var(--kk-blue-primary);
  background: var(--kk-blue-surface);
}

.file-upload-dropzone i {
  font-size: 26px;
  color: var(--kk-blue-primary);
  margin-bottom: 6px;
}

.file-upload-dropzone span {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-main);
}

.file-upload-dropzone small {
  font-size: 11px;
  color: var(--text-muted);
}

.file-uploaded-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #DCFCE7;
  border: 1px solid #86EFAC;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: #15803D;
  margin-top: 6px;
}

/* ==========================================================================
   FIRM BRAND LOGOS & MONOGRAMS FOR STORIES (No Cartoon Avatars)
   ========================================================================== */
.story-firm-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #FFFFFF;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.35);
}

.firm-monogram {
  font-size: 13px;
  letter-spacing: 0.5px;
  line-height: 1;
}

.story-firm-logo i {
  font-size: 11px;
  margin-top: 2px;
  opacity: 0.95;
}

/* Corporate Brand Colorways */
.bg-firm-amber {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.bg-firm-emerald {
  background: linear-gradient(135deg, #10B981 0%, #047857 100%);
}

.bg-firm-cyan {
  background: linear-gradient(135deg, #06B6D4 0%, #0284C7 100%);
}

.bg-firm-purple {
  background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
}

.bg-firm-rose {
  background: linear-gradient(135deg, #F43F5E 0%, #BE123C 100%);
}

.bg-firm-sky {
  background: linear-gradient(135deg, #38BDF8 0%, #0284C7 100%);
}

.bg-firm-dark {
  background: linear-gradient(135deg, #334155 0%, #0F172A 100%);
}

.bg-firm-indigo {
  background: linear-gradient(135deg, #6366F1 0%, #4338CA 100%);
}

.bg-firm-orange {
  background: linear-gradient(135deg, #FF6B00 0%, #C2410C 100%);
}

/* ==========================================================================
   RESPONSIVE FULL-WIDTH PRO CARDS (Eliminates Right-Side Whitespace)
   ========================================================================== */
.horizontal-pro-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 14px 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.horizontal-pro-scroll::-webkit-scrollbar {
  display: none;
}

.horizontal-pro-scroll .pro-card {
  flex: 0 0 calc(100% - 8px) !important;
  width: calc(100% - 8px) !important;
  max-width: 100% !important;
  box-sizing: border-box;
  scroll-snap-align: center;
}

.services-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 6px 14px 20px;
  box-sizing: border-box;
}

.services-cards-wrapper .pro-card {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  box-sizing: border-box;
}

.pro-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  user-select: none;
}

.pro-card:hover {
  border-color: var(--kk-blue-primary);
  box-shadow: 0 6px 18px rgba(11, 99, 229, 0.12);
  transform: translateY(-2px);
}

.pro-card-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.pro-firm-badge-lg {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  position: relative;
}

.pro-firm-badge-lg i {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: #FFFFFF;
  border-radius: 50%;
  padding: 3px 4px;
  font-size: 10px;
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.pro-meta {
  flex: 1;
  min-width: 0;
}

.pro-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

.pro-title-row h4 {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.verified-icon {
  color: #10B981;
  font-size: 13px;
  flex-shrink: 0;
}

.pro-rating-dist-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-muted);
}

.pro-rating {
  color: #F59E0B;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pro-dist {
  color: var(--kk-blue-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.pro-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.tag-pill {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

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

.action-btn-call {
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #86EFAC;
  padding: 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.action-btn-call:hover {
  background: #15803D;
  color: #FFFFFF;
}

.action-btn-whatsapp {
  background: #F0FDF4;
  color: #16A34A;
  border: 1px solid #BBF7D0;
  padding: 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.action-btn-whatsapp:hover {
  background: #25D366;
  color: #FFFFFF;
}

/* ==========================================================================
   EXPLORE SCREEN VECTOR TILES (No Cartoon Icons)
   ========================================================================== */
.explore-icon-tile {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease;
}

.category-tile:hover .explore-icon-tile {
  transform: scale(1.08);
}

.icon-electrician { background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); color: #FFF; }
.icon-plumber { background: linear-gradient(135deg, #06B6D4 0%, #0284C7 100%); color: #FFF; }
.icon-ac { background: linear-gradient(135deg, #38BDF8 0%, #1D4ED8 100%); color: #FFF; }
.icon-carpenter { background: linear-gradient(135deg, #B45309 0%, #78350F 100%); color: #FFF; }
.icon-cleaning { background: linear-gradient(135deg, #10B981 0%, #047857 100%); color: #FFF; }
.icon-painter { background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%); color: #FFF; }
.icon-construction { background: linear-gradient(135deg, #F97316 0%, #C2410C 100%); color: #FFF; }
.icon-material { background: linear-gradient(135deg, #64748B 0%, #334155 100%); color: #FFF; }
.icon-hardware { background: linear-gradient(135deg, #475569 0%, #1E293B 100%); color: #FFF; }
.icon-welder { background: linear-gradient(135deg, #EF4444 0%, #B91C1C 100%); color: #FFF; }
.icon-doctor { background: linear-gradient(135deg, #E11D48 0%, #9F1239 100%); color: #FFF; }
.icon-photo { background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%); color: #FFF; }
.icon-chef { background: linear-gradient(135deg, #10B981 0%, #059669 100%); color: #FFF; }
.icon-consultant { background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%); color: #FFF; }
.icon-tutor { background: linear-gradient(135deg, #8B5CF6 0%, #5B21B6 100%); color: #FFF; }

/* ==========================================================================
   MAP FLOATING "TELL US YOUR NEED" CORNER CHATBOT PILL (Non-blocking)
   ========================================================================== */
.map-floating-need-btn {
  position: absolute;
  bottom: 84px;
  right: 14px;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 9999px;
  padding: 6px 14px 6px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.map-floating-need-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.need-btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FF6B00;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.need-btn-text {
  text-align: left;
}

.need-btn-text strong {
  display: block;
  font-size: 11px;
  line-height: 1.1;
  color: #FFFFFF;
}

.need-btn-text small {
  font-size: 9.5px;
  color: #94A3B8;
  display: block;
}

.arrow-sm {
  font-size: 10px;
  color: #94A3B8;
  margin-left: 2px;
}

/* ==========================================================================
   PROFILE SCREEN INITIALS MONOGRAM AVATAR (No Cartoon Faces)
   ========================================================================== */
.profile-monogram-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0B63E5 0%, #0744A3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(11, 99, 229, 0.35);
  border: 3px solid #FFFFFF;
}

.user-avatar-btn .avatar-monogram-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0B63E5 0%, #0744A3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #FFFFFF;
  border: 1.5px solid #FFFFFF;
}

/* ==========================================================================
   CATEGORY EXPLORER & SUBCATEGORY MODAL STYLES (VERSION 7 INTEGRATION)
   ========================================================================== */

/* Additional Tactile Button Symbols */
.sym-construction {
  background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
  color: #FFFFFF;
}
.sym-legal {
  background: linear-gradient(135deg, #475569 0%, #1E293B 100%);
  color: #FFFFFF;
}
.sym-finance {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #FFFFFF;
}
.sym-nurse {
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  color: #FFFFFF;
}
.sym-mechanic {
  background: linear-gradient(135deg, #4B5563 0%, #1F2937 100%);
  color: #FFFFFF;
}
.sym-tailor {
  background: linear-gradient(135deg, #D946EF 0%, #A21CAF 100%);
  color: #FFFFFF;
}
.sym-packers {
  background: linear-gradient(135deg, #854D0E 0%, #713F12 100%);
  color: #FFFFFF;
}
.sym-security {
  background: linear-gradient(135deg, #0F766E 0%, #115E59 100%);
  color: #FFFFFF;
}

/* Category Filter Tabs on Home */
.tactile-filter-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  margin-bottom: 8px;
  scrollbar-width: none;
}
.tactile-filter-tabs::-webkit-scrollbar {
  display: none;
}
.tactile-tab-btn {
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.tactile-tab-btn.active {
  background: #0B63E5;
  color: #FFFFFF;
  border-color: #0B63E5;
  box-shadow: 0 2px 6px rgba(11, 99, 229, 0.3);
}

/* All Categories Toggle & Grid */
.all-categories-toggle-row {
  margin-top: 12px;
  text-align: center;
}
.view-all-cats-btn {
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  color: #0B63E5;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.15s ease;
}
.view-all-cats-btn:hover {
  background: #F8FAFC;
  border-color: #0B63E5;
}
.all-categories-expanded-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 12px;
  padding: 10px;
  background: #F8FAFC;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  max-height: 380px;
  overflow-y: auto;
}
.cat-expand-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.cat-expand-item:hover {
  border-color: #0B63E5;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.cat-expand-icon {
  font-size: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #F1F5F9;
  flex-shrink: 0;
}
.cat-expand-info {
  flex: 1;
  min-width: 0;
}
.cat-expand-title {
  font-size: 12px;
  font-weight: 800;
  color: #0F172A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.cat-expand-sub {
  font-size: 10px;
  color: #64748B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

/* Sub-Category Full Sheet Modal */
.subcategory-sheet {
  background: #FFFFFF;
  border-radius: 24px 24px 0 0;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.subcategory-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(135deg, #0B63E5 0%, #0640A0 100%);
  color: #FFFFFF;
  border-radius: 24px 24px 0 0;
}
.subcat-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.subcat-header-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.subcategory-sheet-header h3 {
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 2px;
}
.subcat-collar-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.25);
  padding: 2px 8px;
  border-radius: 9999px;
  color: #FFFFFF;
}

/* Subcategories Tabs Section */
.subcat-tabs-section {
  padding: 12px 16px 8px;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}
.subcat-tabs-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 800;
  color: #334155;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.subcat-tabs-label small {
  color: #64748B;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: none;
}
.subcat-chips-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.subcat-chips-scroll::-webkit-scrollbar {
  display: none;
}
.subcat-chip-btn {
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #1E293B;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}
.subcat-chip-btn.active {
  background: linear-gradient(135deg, #0B63E5 0%, #0744A3 100%);
  border-color: #0B63E5;
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(11, 99, 229, 0.3);
}

/* Subcategory Task Badges */
.subcat-tasks-container {
  padding: 8px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: #FFFFFF;
  border-bottom: 1px solid #F1F5F9;
  max-height: 85px;
  overflow-y: auto;
}
.subcat-task-badge {
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: all 0.12s ease;
}
.subcat-task-badge:hover {
  background: #E2E8F0;
  color: #0F172A;
}
.subcat-task-badge.active {
  background: #EFF6FF;
  border-color: #3B82F6;
  color: #1D4ED8;
  font-weight: 800;
}

/* Subcategory Vendors Section */
.subcat-vendors-section {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
}
.subcat-vendors-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.subcat-vendors-header h4 {
  font-size: 13.5px;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
}
.subcat-count-pill {
  font-size: 11px;
  font-weight: 800;
  background: #ECFDF5;
  color: #047857;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid #A7F3D0;
}
.subcat-vendors-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Individual Subcategory Vendor Card */
.subcat-vendor-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all 0.15s ease;
}
.subcat-vendor-card:hover {
  border-color: #0B63E5;
  box-shadow: 0 8px 20px rgba(11, 99, 229, 0.12);
  transform: translateY(-2px);
}
.subcat-vendor-top {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}
.subcat-vendor-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.subcat-vendor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subcat-online-dot {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10B981;
  border: 1.5px solid #FFFFFF;
}
.subcat-vendor-meta {
  flex: 1;
  min-width: 0;
}
.subcat-vendor-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 3px;
}
.subcat-vendor-title-row h5 {
  font-size: 13.5px;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.subcat-badge-tier {
  font-size: 9.5px;
  font-weight: 800;
  background: #EFF6FF;
  color: #1D4ED8;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #BFDBFE;
  white-space: nowrap;
}
.subcat-vendor-loc {
  font-size: 11px;
  color: #64748B;
  margin: 0 0 6px;
}
.subcat-vendor-loc i {
  color: #EF4444;
}
.subcat-vendor-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.subcat-rating-pill {
  font-size: 11px;
  font-weight: 800;
  background: #FEF3C7;
  color: #B45309;
  padding: 2px 6px;
  border-radius: 4px;
}
.subcat-reviews-count {
  font-size: 10.5px;
  color: #94A3B8;
}
.subcat-exp-badge {
  font-size: 10px;
  color: #475569;
  font-weight: 700;
  background: #F1F5F9;
  padding: 2px 6px;
  border-radius: 4px;
}

.subcat-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}
.subcat-tag-pill {
  font-size: 10px;
  font-weight: 700;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #475569;
  padding: 2px 7px;
  border-radius: 6px;
}

/* Card CTA Action Buttons */
.subcat-card-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  border-top: 1px solid #F1F5F9;
  padding-top: 10px;
}
.subcat-call-btn {
  flex: 1;
  background: #10B981;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 11.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.subcat-call-btn:hover {
  opacity: 0.9;
}
.subcat-wa-btn {
  flex: 1;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 11.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.subcat-wa-btn:hover {
  opacity: 0.9;
}
.subcat-profile-btn {
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  color: #0F172A;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 11.5px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.15s ease;
}
.subcat-profile-btn:hover {
  background: #E2E8F0;
}

/* Bottom Bar */
.subcat-bottom-bar {
  padding: 12px 16px;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
}
.subcat-map-cta-btn {
  width: 100%;
  background: linear-gradient(135deg, #0B63E5 0%, #0744A3 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(11, 99, 229, 0.25);
  transition: opacity 0.15s ease;
}
.subcat-map-cta-btn:hover {
  opacity: 0.95;
}

/* Subcategory Vendor Card & Action Buttons Styling */
.subcat-vendor-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all 0.2s ease;
}
.subcat-vendor-card:hover {
  border-color: #0B63E5;
  box-shadow: 0 6px 16px rgba(11, 99, 229, 0.12);
  transform: translateY(-2px);
}
.subcat-vendor-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
}
.subcat-verified-tick {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #10B981;
  color: #FFF;
  border-radius: 50%;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #FFF;
}
.subcat-vendor-info {
  flex: 1;
  min-width: 0;
}
.subcat-vendor-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.subcat-vendor-name {
  font-size: 14px;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
}
.subcat-vendor-rating {
  font-size: 11px;
  font-weight: 800;
  color: #B45309;
  background: #FEF3C7;
  padding: 2px 6px;
  border-radius: 6px;
  white-space: nowrap;
}
.subcat-vendor-rating i {
  color: #F59E0B;
}
.subcat-vendor-rating small {
  color: #78716C;
  font-weight: 600;
}
.subcat-vendor-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11.5px;
  color: #64748B;
  margin-bottom: 6px;
}
.subcat-vendor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}
.subcat-pro-tag {
  font-size: 10px;
  font-weight: 700;
  background: #F1F5F9;
  color: #475569;
  padding: 2px 7px;
  border-radius: 6px;
  border: 1px solid #E2E8F0;
}
.subcat-vendor-actions {
  display: flex;
  gap: 8px;
}
.subcat-action-call-btn {
  background: #10B981;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.15s ease;
}
.subcat-action-call-btn:hover {
  opacity: 0.9;
}
.subcat-action-view-btn {
  background: #F8FAFC;
  color: #0B63E5;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.15s ease;
}
.subcat-action-view-btn:hover {
  background: #EFF6FF;
  border-color: #0B63E5;
}




