/* ================================================================
   THỢ ĐÂY — DESIGN SYSTEM
   Modern Vietnamese trust-tech | Emerald + Warm accents
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Be+Vietnam+Pro:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Brand — refined emerald scale, more luxurious */
  --primary: #059669;
  --primary-600: #059669;
  --primary-700: #047857;
  --primary-800: #065f46;
  --primary-500: #10b981;
  --primary-400: #34d399;
  --primary-50:  #ecfdf5;
  --primary-100: #d1fae5;
  --primary-200: #a7f3d0;
  --primary-dark: #064e3b;
  --primary-darker: #022c22;

  /* Service colors */
  --water:  #0284c7;
  --water-50: #e0f2fe;
  --ac:     #0891b2;
  --ac-50:  #cffafe;

  /* Accent — refined warm amber */
  --accent: #f59e0b;
  --accent-500: #f59e0b;
  --accent-600: #d97706;
  --accent-700: #b45309;
  --accent-50: #fffbeb;
  --accent-100: #fef3c7;
  --hot:    #ef4444;

  /* Neutrals — slightly warmer for premium feel */
  --ink-900: #0c1828;
  --ink-800: #1e293b;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748b;
  --ink-400: #94a3b8;
  --ink-300: #cbd5e1;
  --ink-200: #e5e9ef;
  --ink-100: #f1f5f9;
  --ink-50:  #f8fafc;
  --bg:      #fafbf9;
  --white:   #ffffff;
  --cream:   #fefdfb;

  /* Type — Plus Jakarta Sans for display (modern, premium), Be Vietnam Pro for VN body text */
  --font-display: 'Plus Jakarta Sans', 'Be Vietnam Pro', system-ui, sans-serif;
  --font-body:    'Be Vietnam Pro', 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Radius */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-3xl: 48px;
  --r-pill: 999px;

  /* Shadow (soft & warm, slightly more luxurious) */
  --shadow-xs: 0 1px 2px rgba(12, 24, 40, .04);
  --shadow-sm: 0 2px 8px rgba(12, 24, 40, .06), 0 1px 2px rgba(12,24,40,.04);
  --shadow-md: 0 10px 30px -10px rgba(12, 24, 40, .14), 0 2px 6px rgba(12,24,40,.05);
  --shadow-lg: 0 28px 56px -20px rgba(12, 24, 40, .22), 0 6px 16px rgba(12,24,40,.07);
  --shadow-xl: 0 40px 80px -28px rgba(12, 24, 40, .3), 0 8px 20px rgba(12,24,40,.08);
  --shadow-emerald: 0 14px 32px -8px rgba(5, 150, 105, .4);
  --shadow-emerald-lg: 0 24px 48px -12px rgba(5, 150, 105, .5);
  --shadow-amber: 0 14px 32px -8px rgba(245, 158, 11, .4);

  /* Transition */
  --t-fast: .15s cubic-bezier(.4,0,.2,1);
  --t: .25s cubic-bezier(.4,0,.2,1);
  --t-slow: .4s cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.6;
  font-size: 15px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  overflow-x: hidden;
  letter-spacing: -0.005em;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ================================================================
   HEADER — sticky glass + green highlight bar
   ================================================================ */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(15,23,42,.06);
  transition: var(--t);
}
.header::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary), var(--accent));
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.header .logo {
  display: flex !important; align-items: center; gap: 10px; text-decoration: none;
  flex-shrink: 0;
}
.header .logo img {
  height: 42px; width: 42px; object-fit: cover; object-position: center top;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.header .logo > div {
  font-family: var(--font-display);
  font-size: 22px !important; font-weight: 800 !important;
  color: var(--ink-900) !important;
  letter-spacing: -.5px;
  line-height: 1;
}
.header .logo strong { color: var(--primary) !important; font-weight: 800 !important; }

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.main-nav ul {
  display: flex !important; gap: 2px !important;
  list-style: none; margin: 0; padding: 4px;
  background: rgba(241,245,249,.6);
  border-radius: var(--r-pill);
  border: 1px solid rgba(15,23,42,.04);
  flex-wrap: nowrap;
}
.main-nav a {
  display: block;
  padding: 8px 12px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--ink-700) !important;
  border-radius: var(--r-pill);
  transition: var(--t-fast);
  text-decoration: none;
  white-space: nowrap !important;
}
.main-nav a:hover { color: var(--primary) !important; background: rgba(255,255,255,.9); }
.main-nav a.active {
  color: var(--white) !important;
  background: var(--primary) !important;
  box-shadow: var(--shadow-sm);
}

.header-actions {
  display: flex !important; align-items: center; justify-content: flex-end; gap: 12px !important;
  flex-shrink: 0;
}
.hotline-btn {
  display: flex !important; align-items: center; gap: 6px !important;
  font-size: 14px !important; font-weight: 700 !important; color: var(--ink-800) !important;
  text-decoration: none;
}
.hotline-btn i { color: var(--primary) !important; font-size: 16px; }

.login-btn-white {
  padding: 10px 20px;
  border: 1.5px solid var(--ink-200);
  border-radius: 8px;
  color: var(--ink-900);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  background: #fff;
  white-space: nowrap;
}

.cta-btn.primary, .cta-btn-primary {
  background: var(--primary) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 11px 24px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center; gap: 8px !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
  white-space: nowrap !important;
  width: auto !important;
}

.login-btn-white {
  padding: 8px 18px;
  border: 1.5px solid var(--ink-200);
  border-radius: 6px;
  color: var(--ink-900);
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  transition: var(--t);
  background: #fff;
  white-space: nowrap;
}
.login-btn-white:hover { border-color: var(--primary); color: var(--primary); }

/* SIDE ACTIONS */
.side-actions {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9000;
}
.side-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: var(--t);
}
.side-btn:hover { transform: translateX(-5px); }
.worker-btn { background: #10b981; }
.customer-btn { background: #f59e0b; }


  .side-actions { bottom: 80px; right: 10px; }
  .side-btn span { display: none; }
  .side-btn { padding: 12px; border-radius: 50%; }
}
.cta-btn.primary:hover, .cta-btn-primary:hover {
  background: var(--primary-700) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-emerald-lg);
}
.cta-btn.primary:active { transform: translateY(0); }

.cta-btn.secondary {
  background: var(--white) !important;
  color: var(--ink-800) !important;
  border: 1.5px solid var(--ink-200) !important;
  padding: 9px 18px !important;
  border-radius: var(--r-pill) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-decoration: none;
  transition: var(--t-fast);
}
.cta-btn.secondary:hover {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

/* ================================================================
   HERO SECTION — FULL WIDTH PHOTO BACKGROUND (like nhượng quyền)
   ================================================================ */
.hero-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(2,44,34,0.95) 0%, rgba(2,44,34,0.85) 35%, rgba(2,44,34,0) 65%),
    url('assets/hero-girl-2phones.png') center right / cover no-repeat;
  color: #fff;
  padding: 80px 0 100px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(245,158,11,.12), transparent 60%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: auto, 28px 28px;
  pointer-events: none;
}
.hero-section::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 80px;
  background: var(--bg); border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scaleX(1.15);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-content::after { display: none; }
.hero-image {
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  min-height: auto;
  background: none;
  overflow: visible;
}
.hero-image img, .hero-illustration {
  display: none !important;
}
.hero-content { max-width: none; }

.badge-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 700;
  color: #a7f3d0;
  margin-bottom: 28px;
  border: 1px solid rgba(167,243,208,0.3);
  backdrop-filter: blur(4px);
}
.badge-tag i { color: #34d399; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: normal;
  color: #34d399;
  position: relative;
  font-weight: 900;
}
.hero-title em::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 6px;
  background: var(--accent);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.8;
}

.hero-services {
  display: flex; align-items: center; gap: 14px;
  font-size: 16px; color: rgba(255,255,255,0.7); font-weight: 600;
  margin-bottom: 30px;
}
.hero-services .dot { color: #34d399; }

.hero-benefits {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 30px; padding: 0;
}
.hero-benefits li {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.hero-benefits li i { color: #34d399; font-size: 14px; }

.booking-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25), inset 0 0 0 1px rgba(255,255,255,0.2);
  position: relative;
  max-width: 400px;
}
.booking-form .form-group {
  position: relative; margin-bottom: 12px;
}
.booking-form .form-group i:first-child {
  position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  color: var(--primary-600); font-size: 14px;
}
.booking-form input {
  width: 100%;
  padding: 12px 15px 12px 42px;
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.95);
  outline: none;
  transition: var(--t);
  color: var(--ink-900);
}
.booking-form input::placeholder { color: var(--ink-400); font-weight: 500; }
.booking-form input:focus {
  border-color: var(--primary-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}
.target-icon {
  position: absolute !important; right: 18px; left: auto !important;
  top: 50%; transform: translateY(-50%);
  color: var(--primary) !important;
  cursor: pointer;
  font-size: 17px !important;
  transition: var(--t-fast);
}
.target-icon:hover { color: var(--primary-700) !important; }

.submit-btn {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  box-shadow: 0 6px 15px rgba(5, 150, 105, 0.3);
  transition: var(--t);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.submit-btn small { font-size: 11px; font-weight: 600; opacity: 0.85; letter-spacing: .2px; text-transform: none; }
.submit-btn i { display: inline-block; margin-right: 6px; font-size: 16px; }
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(5, 150, 105, 0.4);
}

.schedule-link {
  text-align: center; margin-top: 12px;
  font-size: 14px; font-weight: 600; color: var(--white);
  cursor: pointer;
  opacity: 0.85;
}
.schedule-link:hover { text-decoration: underline; opacity: 1; }

/* Hero image side (hidden because it's now the background) */
.hero-image {
  display: none;
}
.hero-image::before {
  content: ''; position: absolute;
  inset: 80px;
  background:
    radial-gradient(circle at 50% 50%, rgba(16,185,129,.22), transparent 65%);
  filter: blur(40px);
  z-index: 0;
}
.hero-illustration {
  position: relative;
  z-index: 2;
  width: 110%;
  max-width: 720px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(5,150,105,.18)) drop-shadow(0 20px 40px rgba(15,23,42,.08));
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.floating-badge {
  position: absolute;
  bottom: 40px; left: -10px;
  max-width: 280px;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: var(--r-lg);
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-xl);
  z-index: 3;
  border: 1px solid rgba(5,150,105,.08);
  animation: badgeFloat 5s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Top-right floating stat */
.hero-image .stat-pill {
  position: absolute;
  top: 60px; right: -10px;
  background: #fff;
  padding: 14px 20px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
  border: 1px solid rgba(5,150,105,.08);
  animation: badgeFloat 5s ease-in-out infinite;
  animation-delay: 1s;
}
.hero-image .stat-pill .ico {
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--accent), var(--accent-600));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.hero-image .stat-pill strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800; color: var(--ink-900);
  line-height: 1;
}
.hero-image .stat-pill span {
  font-size: 11px; color: var(--ink-500); font-weight: 600;
}
.badge-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: var(--white);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.badge-text strong {
  display: block; font-size: 16px; font-weight: 800; color: var(--ink-900);
}
.badge-text span {
  display: block; font-size: 12px; color: var(--ink-500); font-weight: 500;
}
.badge-text .rating {
  color: var(--accent-600); font-weight: 700; margin-top: 2px;
}

/* ================================================================
   QUICK ACTIONS
   ================================================================ */
.quick-actions-section {
  padding: 0; margin-top: -70px; position: relative; z-index: 5;
}
.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.action-card {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--t);
  border: 1px solid rgba(15,23,42,.04);
  text-decoration: none;
  color: inherit;
}
.action-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-100);
}
.action-card .icon-circle {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--white);
  flex-shrink: 0;
}
.action-card.call-now .icon-circle {
  background: linear-gradient(135deg, var(--hot), #dc2626);
  box-shadow: 0 8px 16px -4px rgba(239,68,68,.4);
}
.action-card.schedule .icon-circle {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  box-shadow: 0 8px 16px -4px rgba(5,150,105,.4);
}
.action-card.maintenance .icon-circle {
  background: linear-gradient(135deg, var(--accent), var(--accent-600));
  box-shadow: 0 8px 16px -4px rgba(245,158,11,.4);
}
.action-info { flex: 1; min-width: 0; }
.action-info h3 {
  font-size: 16px; font-weight: 800; color: var(--ink-900);
  margin-bottom: 2px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.action-info p { font-size: 13px; color: var(--ink-500); font-weight: 500; }
.action-card .arrow {
  color: var(--ink-300);
  transition: var(--t-fast);
}
.action-card:hover .arrow { color: var(--primary); transform: translateX(4px); }

.tag {
  font-size: 10px;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  font-weight: 800;
  letter-spacing: .5px;
}
.tag.hot { background: #fef2f2; color: var(--hot); }
.tag.save { background: #fffbeb; color: var(--accent-600); }

/* ================================================================
   GENERAL SECTION HEADERS
   ================================================================ */
section { padding: 80px 0; }

.section-header { margin-bottom: 48px; }
.section-header.text-center { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-header.space-between { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }

.subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.title span {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-header .desc {
  font-size: 16px; color: var(--ink-500); font-weight: 500;
}
.view-all {
  font-size: 14px; font-weight: 700; color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.view-all:hover { gap: 10px; }

/* ================================================================
   SERVICES GRID
   ================================================================ */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  transition: var(--t);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-100);
}
.card-img {
  height: 220px;
  position: relative;
  background: linear-gradient(135deg, var(--primary-50), var(--ink-50));
  overflow: hidden;
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: var(--t-slow);
}
.service-card:hover .card-img img { transform: scale(1.06); }

.icon-badge {
  position: absolute; top: 16px; left: 16px;
  width: 48px; height: 48px;
  background: var(--white);
  color: var(--primary);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-md);
}
.icon-badge.blue { color: var(--water); }
.icon-badge.cyan { color: var(--ac); }

.card-body { padding: 24px; }
.card-body h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 8px;
  letter-spacing: -.3px;
}
.card-body p {
  font-size: 14px; color: var(--ink-500);
  margin-bottom: 20px; line-height: 1.5;
}
.card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px dashed var(--ink-200);
}
.price {
  font-size: 13px; color: var(--ink-500); font-weight: 500;
}
.price strong {
  font-family: var(--font-display);
  display: block; font-size: 22px; font-weight: 800; color: var(--ink-900);
  margin-top: 2px;
}
.btn-sm {
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--t-fast);
}
.btn-sm.primary { background: var(--primary); color: var(--white); }
.btn-sm.primary:hover { background: var(--primary-700); }
.btn-sm.primary.blue { background: var(--water); }
.btn-sm.primary.blue:hover { background: #0369a1; }
.btn-sm.primary.cyan { background: var(--ac); }
.btn-sm.primary.cyan:hover { background: #0e7490; }

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar-section {
  padding: 60px 0;
  background:
    linear-gradient(135deg, var(--primary-700), var(--primary)),
    var(--primary);
  position: relative;
  overflow: hidden;
}
.trust-bar-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.08), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,.08), transparent 40%);
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.trust-item {
  display: flex; align-items: center; gap: 16px;
  color: var(--white);
}
.trust-item i {
  font-size: 32px;
  width: 60px; height: 60px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.2);
}
.trust-item span {
  font-size: 14px; font-weight: 700; line-height: 1.4;
}

/* ================================================================
   WORKFLOW & REVIEWS
   ================================================================ */
.workflow-reviews-section { background: var(--white); }
.workflow-reviews-section .row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.step {
  background: var(--ink-50);
  padding: 28px 24px;
  border-radius: var(--r-lg);
  position: relative;
  transition: var(--t);
  border: 1px solid var(--ink-100);
}
.step:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-100);
}
.step-icon {
  width: 56px; height: 56px;
  background: var(--white);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
}
.step h4 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 6px;
}
.step p { font-size: 13px; color: var(--ink-500); line-height: 1.5; }

.reviews-card {
  background: linear-gradient(160deg, var(--primary-50), var(--white));
  padding: 36px 32px;
  border-radius: var(--r-xl);
  border: 1px solid var(--primary-100);
  text-align: center;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
}
.reviews-card .stars { color: var(--accent); font-size: 18px; margin-bottom: 12px; }
.reviews-card .stars i { margin: 0 1px; }
.review-subtitle {
  font-size: 11px; color: var(--primary); font-weight: 800;
  letter-spacing: 1.5px;
}
.rating-big {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: var(--ink-900);
  line-height: 1;
  margin: 12px 0 6px;
  letter-spacing: -3px;
}
.rating-big span { font-size: 28px; color: var(--ink-400); font-weight: 600; }
.review-count { font-size: 13px; color: var(--ink-500); margin-bottom: 20px; }
.avatars {
  display: flex; justify-content: center; margin-bottom: 24px;
}
.avatars img {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -10px;
  box-shadow: var(--shadow-xs);
}
.avatars img:first-child { margin-left: 0; }
.quote-box {
  background: var(--white);
  padding: 18px 20px;
  border-radius: var(--r-md);
  text-align: left;
  border-left: 3px solid var(--primary);
  box-shadow: var(--shadow-xs);
}
.quote-box p {
  font-size: 14px; color: var(--ink-700); font-style: italic; line-height: 1.6;
}
.quote-box span {
  display: block; margin-top: 8px;
  font-size: 12px; color: var(--ink-500); font-weight: 700;
}

/* ================================================================
   PRICING TABLES
   ================================================================ */
.pricing-section { background: var(--ink-50); }
.pricing-tables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-col {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  transition: var(--t);
}
.pricing-col:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-header {
  padding: 22px 24px;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  color: var(--white);
  letter-spacing: -.3px;
  position: relative;
  overflow: hidden;
}
.pricing-header::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 80px; height: 100%;
  background: rgba(255,255,255,.15);
  transform: skewX(-20deg) translateX(40px);
}
.pricing-header.green { background: linear-gradient(135deg, var(--primary-500), var(--primary-700)); }
.pricing-header.blue { background: linear-gradient(135deg, #0ea5e9, var(--water)); }
.pricing-header.cyan { background: linear-gradient(135deg, #06b6d4, var(--ac)); }

.pricing-list { padding: 12px 0; }
.pricing-list li {
  padding: 14px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
  color: var(--ink-700);
  border-bottom: 1px dashed var(--ink-100);
  transition: var(--t-fast);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li:hover { background: var(--ink-50); }
.pricing-list li strong { color: var(--ink-900); font-weight: 800; }

.pricing-note {
  text-align: center; margin-top: 24px;
  font-size: 13px; color: var(--ink-500); font-style: italic;
}

/* ================================================================
   APP BANNER
   ================================================================ */
.app-banner-section {
  background: var(--white);
}
.app-banner-inner {
  background: linear-gradient(135deg, var(--ink-900), var(--ink-800));
  border-radius: var(--r-2xl);
  padding: 60px;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.app-banner-inner::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(16,185,129,.25), transparent 60%);
}
.app-images {
  position: relative; z-index: 2;
}
.app-images img {
  width: 100%;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.5));
  animation: phoneFloat 5s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}
.app-content { position: relative; z-index: 2; }
.app-content h2 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -.5px;
}
.app-content h2 em {
  font-style: normal;
  color: var(--primary-500);
}
.app-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,.85);
  margin-bottom: 12px;
}
.app-features li i { color: var(--primary-500); font-size: 16px; }

.app-download { position: relative; z-index: 2; }
.app-download p {
  font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 16px;
}
.download-flex { display: flex; gap: 16px; align-items: center; }
.qr-box {
  width: 100px; height: 100px;
  background: var(--white);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 60px;
  color: var(--ink-900);
}
.store-btns { display: flex; flex-direction: column; gap: 10px; }
.store-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: var(--white);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: var(--t-fast);
}
.store-btn:hover { transform: translateY(-2px); }
.store-btn i { font-size: 24px; color: var(--ink-900); }
.store-btn div { display: flex; flex-direction: column; line-height: 1; }
.store-btn span { font-size: 10px; color: var(--ink-500); }
.store-btn strong { font-size: 14px; color: var(--ink-900); font-weight: 800; }

/* ================================================================
   NEWS
   ================================================================ */
.news-section { background: var(--ink-50); }
.news-section .title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 800;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.news-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  transition: var(--t);
  cursor: pointer;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.news-card img {
  width: 100%; height: 180px; object-fit: cover; object-position: center top;
  transition: var(--t-slow);
}
.news-card:hover img { transform: scale(1.06); }
.news-content { padding: 18px 20px; }
.news-content h3 {
  font-size: 15px; font-weight: 700;
  color: var(--ink-900); line-height: 1.4;
  margin-bottom: 8px;
}
.news-content .date {
  font-size: 12px; color: var(--ink-400); font-weight: 600;
}

/* ================================================================
   PARTNERS MARQUEE
   ================================================================ */
.partners-section { padding: 60px 0; background: var(--white); }
.marquee-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex; gap: 60px;
  align-items: center;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand-logo {
  font-size: 22px; font-weight: 800;
  color: var(--ink-400);
  letter-spacing: 1px;
  filter: grayscale(100%) opacity(.6);
  transition: var(--t-fast);
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.brand-logo:hover { filter: none; color: var(--ink-700); }
.lg-circle {
  width: 36px; height: 36px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--ink-900);
  color: rgba(255,255,255,.7);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary), var(--accent));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col.brand p {
  font-size: 14px; line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}
.footer .logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.footer .logo img {
  height: 42px; width: 42px; border-radius: 12px; object-fit: cover; object-position: center top;
}
.footer .logo > div {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800; color: var(--white);
  letter-spacing: -.5px;
}
.footer .logo strong { color: var(--primary-500) !important; }

.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--t-fast);
}
.socials a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.footer-col h4::after {
  content: ''; position: absolute;
  bottom: -1px; left: 0;
  width: 32px; height: 2px;
  background: var(--primary-500);
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: var(--t-fast);
}
.footer-col ul a:hover { color: var(--primary-500); padding-left: 4px; }

.contact-info p { font-size: 13px; margin-bottom: 8px; line-height: 1.6; }
.contact-info p:first-child {
  font-size: 12px;
  color: var(--primary-500);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.hotline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 24px; font-weight: 800;
  color: var(--white);
  margin: 8px 0 16px;
}
.hotline i { color: var(--primary-500); font-size: 20px; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* ================================================================
   BOOKING PANEL (Slide drawer)
   ================================================================ */
.panel-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,.6);
  backdrop-filter: blur(4px);
  z-index: 9000;
  opacity: 0; pointer-events: none;
  transition: var(--t);
}
.panel-overlay.open { opacity: 1; pointer-events: auto; }

.booking-panel {
  position: fixed;
  top: 0; right: -480px;
  width: 460px; max-width: 100vw;
  height: 100vh;
  background: var(--white);
  z-index: 9001;
  box-shadow: -20px 0 60px -10px rgba(0,0,0,.3);
  transition: right .4s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.booking-panel.open { right: 0; }

.panel-header {
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: var(--white);
  display: flex; align-items: center; gap: 16px;
  position: relative;
}
.panel-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: rgba(255,255,255,.2);
}
.panel-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--t-fast);
}
.panel-close:hover { background: rgba(255,255,255,.25); transform: rotate(90deg); }

.panel-step {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.panel-step.hidden { display: none; }
.panel-step::-webkit-scrollbar { width: 6px; }
.panel-step::-webkit-scrollbar-thumb { background: var(--ink-200); border-radius: 3px; }

.panel-sec-label {
  font-size: 11px; font-weight: 800;
  color: var(--ink-500);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  margin-top: 8px;
}
.panel-sec-label:first-child { margin-top: 0; }

.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.mode-btn {
  padding: 14px 8px;
  background: var(--ink-50);
  border: 1.5px solid var(--ink-100);
  border-radius: var(--r-md);
  text-align: center;
  cursor: pointer;
  transition: var(--t-fast);
}
.mode-btn:hover { border-color: var(--primary-100); background: var(--white); }
.mode-btn.active {
  background: var(--primary-50);
  border-color: var(--primary);
}
.mode-btn span { font-size: 22px; display: block; margin-bottom: 6px; }
.mode-btn strong {
  display: block;
  font-size: 13px; font-weight: 800; color: var(--ink-900);
}
.mode-btn small {
  display: block; margin-top: 2px;
  font-size: 10px; color: var(--ink-500); font-weight: 500;
}

.svc-select {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.ss-item {
  padding: 12px 8px;
  background: var(--ink-50);
  border: 1.5px solid var(--ink-100);
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-700);
  text-align: center;
  cursor: pointer;
  transition: var(--t-fast);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.ss-item:hover { border-color: var(--primary-100); }
.ss-item.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.ss-item span { font-size: 16px; }

#subServiceList {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px;
}
.sub-item {
  padding: 14px 16px;
  background: var(--ink-50);
  border: 1.5px solid var(--ink-100);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: var(--t-fast);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.sub-item:hover { border-color: var(--primary-200, var(--primary-100)); background: var(--white); }
.sub-item.active {
  background: var(--primary-50);
  border-color: var(--primary);
}
.sub-name { font-size: 14px; font-weight: 700; color: var(--ink-900); }
.sub-price {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 800; color: var(--primary);
}

.panel-btn-next {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: var(--white);
  border: none;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 15px; font-weight: 800;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: var(--shadow-emerald);
  transition: var(--t);
  margin-top: 12px;
}
.panel-btn-next:hover { box-shadow: var(--shadow-emerald-lg); transform: translateY(-1px); }

.panel-btn-back {
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 14px; font-weight: 700;
  color: var(--ink-700);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--t-fast);
}
.panel-btn-back:hover { border-color: var(--primary); color: var(--primary); }

.panel-nav {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin-top: 20px;
}

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px; font-weight: 700;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.req { color: var(--hot); }

.phone-input-wrap, .addr-input-wrap {
  display: flex;
  background: var(--ink-50);
  border: 1.5px solid var(--ink-100);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--t-fast);
}
.phone-input-wrap:focus-within, .addr-input-wrap:focus-within {
  border-color: var(--primary);
  background: var(--white);
}
.phone-flag {
  padding: 12px 14px;
  background: var(--white);
  border-right: 1px solid var(--ink-100);
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center;
}
.phone-input-wrap input, .addr-input-wrap input {
  flex: 1;
  padding: 12px 14px;
  border: none; outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink-900);
}
.gps-btn {
  padding: 0 16px;
  background: var(--primary);
  border: none;
  color: var(--white);
  cursor: pointer;
}

.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--ink-100);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 14px;
  background: var(--ink-50);
  resize: vertical;
  min-height: 80px;
  transition: var(--t-fast);
  outline: none;
}
.form-group textarea:focus { border-color: var(--primary); background: var(--white); }

/* MATCHING */
.pulse-ring {
  width: 160px; height: 160px;
  background: var(--primary-50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  margin: 40px auto 0;
}
.pulse-ring::before, .pulse-ring::after {
  content: ''; position: absolute; inset: 0;
  border: 3px solid var(--primary);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}
.pulse-ring::after { animation-delay: 1s; }
@keyframes pulseRing {
  0% { transform: scale(.8); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.found-screen { text-align: center; padding: 24px 0; }
.found-check {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-emerald-lg);
  animation: pop .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes pop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.worker-card-found {
  display: flex; gap: 16px;
  background: var(--ink-50);
  padding: 18px;
  border-radius: var(--r-lg);
  margin-bottom: 20px;
  text-align: left;
  border: 1px solid var(--ink-100);
}
.wcf-avatar {
  width: 64px; height: 64px;
  background: var(--primary-100);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}
.wcf-info { flex: 1; }
.wcf-info strong { display: block; font-size: 17px; font-weight: 800; }
.wcf-stars { color: var(--accent); font-size: 13px; margin: 4px 0; }
.wcf-stars span { color: var(--ink-500); margin-left: 6px; font-weight: 500; }
.wcf-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-50);
  color: var(--primary-700);
  font-size: 11px; font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-top: 6px;
}

.worker-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.worker-stats-row > div {
  background: var(--ink-50);
  padding: 12px;
  border-radius: var(--r-md);
  text-align: center;
}
.worker-stats-row label { font-size: 10px; color: var(--ink-500); display: block; font-weight: 700; }
.worker-stats-row strong { font-size: 14px; color: var(--ink-900); display: block; margin-top: 2px; }

.found-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.fa-call, .fa-chat {
  padding: 14px;
  border: none;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 14px; font-weight: 800;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--t-fast);
}
.fa-call { background: var(--primary); color: var(--white); }
.fa-call:hover { background: var(--primary-700); }
.fa-chat { background: var(--ink-100); color: var(--ink-800); }
.fa-chat:hover { background: var(--ink-200); }

.btn-track {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px;
  background: var(--white);
  border: 1.5px dashed var(--primary);
  color: var(--primary);
  border-radius: var(--r-md);
  text-decoration: none;
  font-size: 14px; font-weight: 700;
  transition: var(--t-fast);
}
.btn-track:hover { background: var(--primary-50); }

.hidden { display: none; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { height: 400px; }
  .quick-actions-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-tables { grid-template-columns: 1fr; }
  .workflow-reviews-section .row { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .footer-col { text-align: center; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .footer .logo { justify-content: center; }
  .socials { justify-content: center; }
}
@media (max-width: 1024px) {
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .app-banner-inner { grid-template-columns: 1fr; padding: 40px; }
}
@media (max-width: 640px) {
  section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .hero-section { padding: 50px 0 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .header-actions .hotline-btn span { display: none; }
  .header .logo > div { font-size: 18px !important; }
  .booking-panel { width: 100vw; }
}

/* Reduce-motion friendly */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ================================================================
   PRO WORKER SHOWCASE — image-rich section
   ================================================================ */
.pro-worker-section {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 800px 400px at 80% 50%, rgba(16,185,129,.08), transparent 60%),
    var(--white);
  position: relative;
  overflow: hidden;
}
.pro-worker-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.pro-worker-img {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-50), #fff);
}
.pro-worker-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  transition: transform .8s ease;
}
.pro-worker-img:hover img { transform: scale(1.04); }
.pro-worker-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,150,105,.05), transparent 40%);
  pointer-events: none;
}

.pro-worker-floating {
  position: absolute;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  z-index: 3;
  border: 1px solid rgba(15,23,42,.04);
}
.pro-worker-floating.top {
  top: 24px; left: 24px;
}
.pro-worker-floating.bottom {
  bottom: 24px; right: 24px;
}
.pro-worker-floating .ico {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--primary-50); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.pro-worker-floating.top .ico { background: #fef3c7; color: var(--accent-600); }
.pro-worker-floating strong {
  display: block; font-size: 14px; font-weight: 800;
  color: var(--ink-900); line-height: 1.2;
}
.pro-worker-floating span {
  font-size: 12px; color: var(--ink-500); font-weight: 500;
}

.pro-worker-content { padding: 16px 0; }
.pro-worker-content .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: 1.5px;
  color: var(--primary); text-transform: uppercase;
  padding: 6px 14px; background: var(--primary-50);
  border-radius: var(--r-pill); margin-bottom: 18px;
}
.pro-worker-content h2 {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 900;
  color: var(--ink-900); line-height: 1.1;
  letter-spacing: -1px; margin-bottom: 18px;
}
.pro-worker-content h2 em {
  font-style: normal; color: var(--primary); position: relative;
}
.pro-worker-content h2 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 10px; background: var(--primary-100); z-index: -1;
  border-radius: 6px;
}
.pro-worker-content p.lede {
  font-size: 16px; color: var(--ink-500);
  margin-bottom: 28px; line-height: 1.7;
}
.pro-features { display: grid; gap: 16px; margin-bottom: 32px; }
.pro-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px;
  background: var(--ink-50);
  border-radius: var(--r-md);
  border: 1px solid var(--ink-100);
  transition: var(--t);
}
.pro-feature:hover {
  background: var(--primary-50);
  border-color: var(--primary-100);
  transform: translateX(4px);
}
.pro-feature .ico {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--primary), var(--primary-700));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  box-shadow: var(--shadow-emerald);
}
.pro-feature h4 {
  font-size: 15px; font-weight: 800;
  color: var(--ink-900); margin-bottom: 4px;
}
.pro-feature p { font-size: 13px; color: var(--ink-500); line-height: 1.5; }
.pro-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: var(--primary); color: #fff;
  border-radius: var(--r-pill);
  font-weight: 800; font-size: 14px;
  text-decoration: none;
  box-shadow: var(--shadow-emerald);
  transition: var(--t);
}
.pro-cta:hover { background: var(--primary-700); transform: translateY(-2px); box-shadow: var(--shadow-emerald-lg); }

/* ================================================================
   REAL-TIME TRACKING — phone mockup section
   ================================================================ */
.tracking-section {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(16,185,129,.1), transparent 60%),
    radial-gradient(ellipse 600px 400px at 80% 80%, rgba(245,158,11,.06), transparent 60%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.tracking-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.tracking-content { padding: 16px 0; }
.tracking-content .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: 1.5px;
  color: var(--accent-600); text-transform: uppercase;
  padding: 6px 14px; background: #fef3c7;
  border-radius: var(--r-pill); margin-bottom: 18px;
}
.tracking-content .eyebrow .pulse {
  width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245,158,11,.25);
  animation: pulseAmber 1.6s infinite;
}
@keyframes pulseAmber { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.tracking-content h2 {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 900;
  color: var(--ink-900); line-height: 1.1;
  letter-spacing: -1px; margin-bottom: 18px;
}
.tracking-content h2 em {
  font-style: normal; color: var(--primary);
}
.tracking-content p.lede {
  font-size: 16px; color: var(--ink-500);
  margin-bottom: 32px; line-height: 1.7;
}

.tracking-steps { display: grid; gap: 18px; margin-bottom: 32px; }
.tracking-step {
  display: flex; align-items: flex-start; gap: 16px;
}
.tracking-step .num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 16px; font-weight: 900;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: var(--t);
}
.tracking-step:hover .num {
  background: var(--primary); color: #fff;
  box-shadow: var(--shadow-emerald);
  transform: scale(1.1);
}
.tracking-step h4 {
  font-size: 16px; font-weight: 800;
  color: var(--ink-900); margin-bottom: 4px;
}
.tracking-step p { font-size: 14px; color: var(--ink-500); line-height: 1.5; }

.tracking-images {
  position: relative;
  height: 600px;
  display: flex; align-items: center; justify-content: center;
}
.tracking-images::before {
  content: ''; position: absolute;
  inset: 60px;
  background:
    radial-gradient(circle at center, rgba(16,185,129,.15), transparent 70%);
  filter: blur(30px);
  z-index: 0;
}
.tracking-phone-1, .tracking-phone-2 {
  position: absolute;
  filter: drop-shadow(0 30px 60px rgba(15,23,42,.25));
  transition: transform .4s ease;
}
.tracking-phone-1 {
  width: 60%; max-width: 280px;
  left: 0; top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  z-index: 2;
}
.tracking-phone-2 {
  width: 65%; max-width: 320px;
  right: 0; top: 50%;
  transform: translateY(-50%) rotate(6deg);
  z-index: 3;
}
.tracking-images:hover .tracking-phone-1 {
  transform: translateY(-50%) rotate(-12deg) translateX(-15px);
}
.tracking-images:hover .tracking-phone-2 {
  transform: translateY(-50%) rotate(10deg) translateX(15px);
}

.tracking-stat-card {
  position: absolute;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  z-index: 4;
  border: 1px solid rgba(15,23,42,.05);
}
.tracking-stat-card.top {
  top: 30px; right: 20px;
}
.tracking-stat-card.bottom {
  bottom: 30px; left: 20px;
}
.tracking-stat-card .ico {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.tracking-stat-card.top .ico { background: var(--accent); }
.tracking-stat-card strong {
  display: block; font-family: var(--font-display);
  font-size: 18px; font-weight: 900; color: var(--ink-900); line-height: 1;
}
.tracking-stat-card span {
  font-size: 11px; color: var(--ink-500); font-weight: 600;
}

@media (max-width: 1024px) {
  .pro-worker-inner, .tracking-inner { grid-template-columns: 1fr; gap: 40px; }
  .pro-worker-content h2, .tracking-content h2 { font-size: 32px; }
  .tracking-images { height: 500px; }
}
@media (max-width: 640px) {
  .pro-worker-section, .tracking-section { padding: 70px 0; }
  .pro-worker-content h2, .tracking-content h2 { font-size: 26px; }
  .tracking-images { height: 420px; }
  .pro-worker-floating.top, .pro-worker-floating.bottom {
    padding: 10px 14px;
  }
  .pro-worker-floating .ico { width: 36px; height: 36px; font-size: 14px; }
  .pro-worker-floating strong { font-size: 12px; }
  .pro-worker-floating span { font-size: 10px; }
}

/* ================================================================
   MOBILE NATIVE APP EXPERIENCE OVERRIDES
   ================================================================ */
@media (max-width: 768px) {
  /* Bottom Navigation Bar */
  .mobile-bottom-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 8999;
    border-top: 1px solid var(--ink-100);
  }
  .mobile-nav-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-decoration: none; color: var(--ink-500);
    gap: 4px;
    flex: 1;
    transition: var(--t-fast);
  }
  .mobile-nav-item i { font-size: 20px; transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1); }
  .mobile-nav-item span { font-size: 11px; font-weight: 600; }
  .mobile-nav-item.active { color: var(--primary); }
  .mobile-nav-item.active i { transform: translateY(-2px) scale(1.1); color: var(--primary); }
  
  /* Make space for bottom nav */
  body { padding-bottom: 70px; }
  
  /* Bottom Sheet Booking Panel */
  .booking-panel {
    top: auto !important;
    bottom: -100% !important;
    right: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: auto !important;
    max-height: 90vh !important;
    border-radius: 24px 24px 0 0 !important;
    transition: bottom 0.5s cubic-bezier(0.32, 0.72, 0, 1) !important;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2) !important;
  }
  .booking-panel.open {
    bottom: 0 !important;
  }
  
  /* Drag handle for bottom sheet */
  .panel-header {
    border-radius: 24px 24px 0 0;
    padding-top: 30px !important;
    justify-content: center !important;
    text-align: center;
  }
  .panel-header > div { margin: 0 auto; }
  .drag-handle {
    position: absolute;
    top: 10px; left: 50%;
    transform: translateX(-50%);
    width: 40px; height: 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
  }
  .panel-close {
    position: absolute;
    right: 20px; top: 25px;
  }
  
  /* Active states for tactile feedback */
  button:active, .cta-btn:active, .mode-btn:active, .book-item:active {
    transform: scale(0.96) !important;
  }
  
  /* Floating CTA on mobile hero */
  .hero-floating-cta {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px; height: 60px;
    background: var(--hot);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
    z-index: 8998;
    animation: pulseGlow 2s infinite;
  }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* --- HAMBURGER MENU --- */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--ink-900);
  padding: 8px;
  cursor: pointer;
}

.mobile-menu-panel {
  position: fixed;
  top: 0; right: -100%;
  width: 100vw; height: 100dvh;
  background: var(--bg);
  z-index: 9005;
  transition: right 0.4s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.mobile-menu-panel.open { right: 0; }
.mobile-menu-links {
  flex: 1; padding: 20px; overflow-y: auto;
}
.mobile-menu-links a {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 0;
  font-size: 16px; font-weight: 600; color: var(--ink-900);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-100);
}
.mobile-menu-links a i { width: 24px; text-align: center; color: var(--primary-500); }
.mobile-menu-footer {
  padding: 20px; border-top: 1px solid var(--ink-100);
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  
  /* Make Booking Panel full screen like an app */
  .booking-panel {
    bottom: -100% !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    border-radius: 0 !important;
  }
  .panel-header {
    border-radius: 0 !important;
    padding-top: max(20px, env(safe-area-inset-top)) !important;
  }
  .drag-handle { display: none !important; }
  
  #bookingPanelLogo { display: flex !important; }
  .panel-title-group { display: none !important; }
}

/* ================================================================
   NATIVE APP BOOKING PANEL STYLES
   ================================================================ */

/* Splash Screen */
.booking-splash {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-out;
}
.booking-splash.show {
  opacity: 1;
  pointer-events: all;
}
.booking-splash .splash-logo {
  height: 80px;
  filter: brightness(0) invert(1);
  animation: splashFloat 2s ease-in-out infinite;
}
.splash-spinner {
  width: 40px; height: 40px;
  border: 4px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: splashSpin 1s linear infinite;
}

@keyframes splashFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes splashSpin {
  100% { transform: rotate(360deg); }
}

/* Staggered Animations */
.panel-step {
  display: flex; flex-direction: column; height: 100%;
}
.anim-stagger-1, .anim-stagger-2, .anim-stagger-3, .anim-stagger-4, .anim-stagger-5 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.panel-step.show-anim .anim-stagger-1 { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.panel-step.show-anim .anim-stagger-2 { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.panel-step.show-anim .anim-stagger-3 { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.panel-step.show-anim .anim-stagger-4 { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.panel-step.show-anim .anim-stagger-5 { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

/* Segmented Control (iOS style) */
.segmented-control {
  display: flex;
  background: var(--ink-100);
  border-radius: 12px;
  padding: 4px;
  position: relative;
}
.sc-item {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-500);
  cursor: pointer;
  border-radius: 10px;
  transition: var(--t-fast);
  position: relative;
  z-index: 2;
}
.sc-item.active {
  color: var(--primary-700);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* App Service Grid */
.app-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.app-svc-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: 16px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.app-svc-card:active {
  transform: scale(0.92);
}
.app-svc-card.active {
  border-color: var(--primary-500);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
  transform: translateY(-4px);
}
.svc-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: white;
}
.app-svc-card span {
  font-size: 13px; font-weight: 700; color: var(--ink-700); text-align: center;
}
.app-svc-card.active span {
  color: var(--primary-700);
}

/* Icon Backgrounds */
.bg-yellow { background: linear-gradient(135deg, #FCD34D, #F59E0B); }
.bg-blue { background: linear-gradient(135deg, #60A5FA, #3B82F6); }
.bg-cyan { background: linear-gradient(135deg, #67E8F9, #06B6D4); }
.bg-purple { background: linear-gradient(135deg, #C084FC, #9333EA); }
.bg-orange { background: linear-gradient(135deg, #FDBA74, #EA580C); }
.bg-green { background: linear-gradient(135deg, #6EE7B7, #10B981); }

/* Hide panel title group globally since we use logo */
.panel-title-group { display: none !important; }
#bookingPanelLogo { display: flex !important; }


/* --- BE APP STYLE OVERRIDES --- */
.app-svc-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  gap: 8px !important;
}
.app-svc-card.active .svc-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4) !important;
  border: 2px solid var(--white);
}
.app-svc-card.active {
  transform: translateY(-4px) !important;
}
.svc-icon {
  width: 64px !important; height: 64px !important;
  border-radius: 50% !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12) !important;
  font-size: 26px !important;
  margin: 0 auto;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.app-service-grid {
  gap: 24px 10px !important;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
.panel-step.show-anim .anim-stagger-6 { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }


/* ================================================================
   PREMIUM APP BOOKING PANEL — FULL REDESIGN
   ================================================================ */

/* ---- SPLASH SCREEN ---- */
.booking-splash {
  position: absolute; inset: 0; z-index: 10000;
  background: linear-gradient(135deg, #065f46, #064e3b);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.booking-splash.show { opacity: 1; pointer-events: all; }
.splash-content {
  display: flex; flex-direction: column; align-items: center;
  gap: 0; width: 100%;
}
.splash-logo-wrap {
  display: flex; align-items: center; gap: 10px; margin-bottom: 0;
}
.splash-logo-img {
  height: 100px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  animation: splashBounce 1.5s ease-in-out infinite;
}
.splash-logo-text {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 900; color: var(--primary); letter-spacing: -0.5px;
}
.splash-girl-img {
  width: 80%; max-width: 280px;
  margin: 12px 0 8px;
  border-radius: 24px;
  animation: splashSlideUp 0.5s ease-out;
}
.splash-tagline {
  color: var(--ink-500); font-size: 15px; font-weight: 600;
  text-align: center; letter-spacing: 0.3px;
}
.splash-dots {
  display: flex; gap: 8px; margin-top: 20px;
}
.splash-dots span {
  width: 8px; height: 8px; background: var(--primary-100);
  border-radius: 50%; animation: dotPulse 1.2s ease-in-out infinite;
}
.splash-dots span:nth-child(2) { animation-delay: 0.2s; }
.splash-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes splashBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes splashSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes dotPulse {
  0%, 100% { background: var(--primary-100); transform: scale(1); }
  50% { background: var(--primary); transform: scale(1.3); }
}

/* ---- PANEL HEADER ---- */
.booking-panel .panel-header {
  background: linear-gradient(135deg, #059669, #0d9488) !important;
  border-radius: 0 !important;
  padding: 16px 20px 16px !important;
  display: flex !important; align-items: center !important; justify-content: space-between !important;
  text-align: left !important;
  flex-direction: row !important;
  padding-top: max(16px, env(safe-area-inset-top)) !important;
}
.app-panel-logo {
  display: flex; align-items: center; gap: 10px;
}
.app-panel-logo span {
  font-family: var(--font-display); font-size: 22px; font-weight: 900; color: white;
}

/* ---- STEP SECTIONS ---- */
.panel-step {
  flex: 1; overflow-y: auto; display: flex; flex-direction: column;
  padding: 0;
  scrollbar-width: none;
}
.panel-step::-webkit-scrollbar { display: none; }
.ps-section { padding: 16px 20px 0; }
.ps-label {
  font-size: 11px; font-weight: 800; color: var(--ink-400);
  letter-spacing: 1px; margin-bottom: 12px; margin-top: 4px;
}
.ps-footer {
  padding: 16px 20px 24px; margin-top: auto;
}

/* ---- ANIMATE IN ---- */
.animate-in {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  transition-delay: var(--d, 0s);
}
.panel-step.show-anim .animate-in {
  opacity: 1; transform: translateY(0);
}

/* ---- PROMO BANNER ---- */
.app-promo-card {
  position: relative; border-radius: 16px; overflow: hidden;
  height: 130px; display: flex; align-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15); cursor: pointer;
}
.promo-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.promo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,150,105,0.85) 0%, rgba(0,0,0,0.2) 100%);
}
.promo-badge {
  position: absolute; top: 10px; right: 10px;
  background: #ef4444; color: white; padding: 3px 9px;
  border-radius: 20px; font-size: 10px; font-weight: 800;
  box-shadow: 0 3px 8px rgba(239,68,68,0.5);
}
.promo-body {
  position: relative; z-index: 2; padding: 0 16px; flex: 1;
}
.promo-title { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: white; line-height: 1.2; }
.promo-sub { font-size: 12px; color: rgba(255,255,255,0.85); margin-top: 4px; }
.promo-arrow { position: relative; z-index: 2; padding-right: 16px; color: rgba(255,255,255,0.7); font-size: 14px; }

/* ---- SERVICE GRID (Be App Style) ---- */
.app-service-grid {
  display: grid !important; grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px 10px !important; margin: 0 !important;
}
.app-svc-card {
  display: flex !important; flex-direction: column !important;
  align-items: center !important; gap: 8px !important;
  cursor: pointer; border: none !important; background: none !important;
  box-shadow: none !important; padding: 0 !important;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.app-svc-card:active { transform: scale(0.88) !important; }
.app-svc-card.active { transform: translateY(-4px) !important; }
.svc-icon {
  width: 62px !important; height: 62px !important;
  border-radius: 50% !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.app-svc-card.active .svc-icon {
  box-shadow: 0 12px 30px rgba(16,185,129,0.35) !important;
  transform: scale(1.08) !important;
}
.app-svc-card span {
  font-size: 12px !important; font-weight: 700 !important;
  color: var(--ink-700) !important; text-align: center !important;
}
.app-svc-card.active span { color: var(--primary-700) !important; font-weight: 800 !important; }

/* ---- RADAR MATCHING ---- */
.matching-screen {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 32px 24px; flex: 1; gap: 16px;
}
.radar-wrap {
  position: relative; width: 200px; height: 200px;
  display: flex; align-items: center; justify-content: center;
}
.radar-ring {
  position: absolute; border-radius: 50%;
  border: 2px solid rgba(16,185,129,0.3);
  animation: radarExpand 2.4s ease-out infinite;
}
.radar-ring.r1 { width: 60px; height: 60px; animation-delay: 0s; }
.radar-ring.r2 { width: 110px; height: 110px; animation-delay: 0.6s; }
.radar-ring.r3 { width: 180px; height: 180px; animation-delay: 1.2s; }
@keyframes radarExpand {
  0% { opacity: 0.9; transform: scale(0.85); }
  100% { opacity: 0; transform: scale(1.15); }
}
.radar-sweep {
  position: absolute; width: 100%; height: 100%; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(16,185,129,0.3) 60deg, transparent 80deg);
  animation: radarSweep 2s linear infinite;
}
@keyframes radarSweep { to { transform: rotate(360deg); } }
.radar-dot {
  position: absolute;
  width: 12px; height: 12px;
  background: #ef4444; border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(239,68,68,0.25);
  top: calc(50% - 6px + var(--dist) * sin(var(--angle)) * -1);
  left: calc(50% - 6px + var(--dist) * cos(var(--angle)));
  animation: dotBlink 1.2s ease-in-out infinite;
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.radar-center {
  position: relative; z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #059669, #0d9488);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
  box-shadow: 0 6px 18px rgba(5,150,105,0.45);
}
.matching-title {
  font-family: var(--font-display); font-size: 20px;
  font-weight: 800; color: var(--ink-900); text-align: center; margin: 0;
}
.matching-sub {
  font-size: 14px; color: var(--ink-500); text-align: center; margin: 0;
}
.matching-status-row {
  display: flex; align-items: center; gap: 8px;
}
.ms-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #d1d5db;
}
.ms-dot.active { background: #10b981; animation: dotBlink 1s infinite; }
.ms-text { font-size: 13px; color: var(--ink-500); font-weight: 600; }

/* ---- FOUND SCREEN ---- */
.found-screen {
  padding: 24px 20px; display: flex; flex-direction: column; gap: 16px;
  overflow-y: auto;
}
.found-header { text-align: center; }
.found-checkmark {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 28px; margin: 0 auto 12px;
  box-shadow: 0 8px 24px rgba(16,185,129,0.4);
  animation: checkPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes checkPop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.found-title {
  font-family: var(--font-display); font-size: 22px;
  font-weight: 900; color: var(--ink-900); margin: 0 0 4px;
}
.found-sub { font-size: 14px; color: var(--ink-500); margin: 0; }

/* ---- WORKER RIDING SCENE ---- */
.worker-riding-scene {
  position: relative; height: 120px; overflow: hidden;
  border-radius: 16px; background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}
.worker-ride-img {
  height: 110px; position: absolute; right: -10px; bottom: 0;
  animation: rideIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes rideIn {
  from { right: -150px; opacity: 0; }
  to { right: -10px; opacity: 1; }
}
.road-line {
  position: absolute; bottom: 12px; left: 0; right: 0; height: 3px;
  background: repeating-linear-gradient(90deg, #10b981 0px, #10b981 20px, transparent 20px, transparent 40px);
  animation: roadMove 0.8s linear infinite;
}
@keyframes roadMove { to { background-position: 40px 0; } }

/* ---- STEP 2 PROGRESS ---- */
.step2-header { padding: 16px 20px 0; }
.step2-progress {
  display: flex; align-items: center; gap: 0;
}
.sp-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--ink-200); border: 2px solid var(--ink-200);
  flex-shrink: 0; transition: var(--t-fast);
}
.sp-dot.done { background: var(--primary); border-color: var(--primary); }
.sp-dot.active { background: white; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(16,185,129,0.25); }
.sp-line { flex: 1; height: 2px; background: var(--ink-200); }
.sp-line.done { background: var(--primary); }

/* ---- WORKER ONLINE DOT ---- */
.wcf-avatar { position: relative; display: inline-flex; }
.wcf-online-dot {
  position: absolute; bottom: 0; right: 0;
  width: 12px; height: 12px; background: #10b981;
  border-radius: 50%; border: 2px solid white;
}


/* ================================================================
   FINAL FIXES — Logo + Splash Girl + Menu + Found Screen
   ================================================================ */

/* Official logo in panel header */
.panel-logo-img {
  height: 40px !important;
  width: 40px !important;
  border-radius: 10px;
  object-fit: cover; object-position: center top;
}
.app-panel-logo span {
  font-family: var(--font-display); font-size: 20px; font-weight: 900; color: white;
}

/* Splash: use hero-girl-2phones.png as main visual (landscape crop) */
.splash-inner {
  display: flex; flex-direction: column; align-items: center;
  width: 100%; height: 100%;
  position: relative; overflow: hidden;
}
.splash-logo-img {
  position: relative; z-index: 3;
  height: 90px; width: 90px;
  border-radius: 22px;
  object-fit: cover; object-position: center top;
  margin-top: 40px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  animation: splashBounce 2s ease-in-out infinite;
}
.splash-girl-wrap {
  flex: 1; width: 100%; display: flex; align-items: flex-end;
  justify-content: center; overflow: hidden;
}
.splash-girl-img {
  width: 100%; max-height: 55vh;
  object-fit: cover; object-position: center top; object-position: center top;
  animation: splashSlideUp 0.7s ease-out forwards;
}
.splash-tagline {
  position: relative; z-index: 3;
  color: white; font-size: 14px; font-weight: 700;
  text-align: center; padding: 12px 20px 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.splash-dots {
  display: flex; gap: 8px; padding-bottom: 30px; z-index: 3;
}
.splash-dots span {
  width: 8px; height: 8px; background: rgba(255,255,255,0.5);
  border-radius: 50%; animation: dotPulse 1.2s ease-in-out infinite;
}
.splash-dots span:nth-child(2) { animation-delay: 0.2s; }
.splash-dots span:nth-child(3) { animation-delay: 0.4s; }

/* Fix: found-screen uses display:flex not class hidden */
.found-screen {
  flex-direction: column !important;
  padding: 20px !important;
  gap: 14px !important;
  overflow-y: auto !important;
}
.found-screen[style*="display:none"] { display: none !important; }
.found-screen[style*="display: none"] { display: none !important; }
.found-screen[style*="display:flex"] { display: flex !important; }
.found-screen[style*="display: flex"] { display: flex !important; }

/* Worker riding scene */
.worker-riding-scene {
  position: relative; height: 130px; overflow: hidden;
  border-radius: 16px; background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  flex-shrink: 0;
}
.worker-ride-img {
  height: 120px; position: absolute; bottom: 0; right: -8px;
  object-fit: contain;
  animation: rideIn 1s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
@keyframes rideIn {
  from { right: -180px; opacity: 0; }
  to { right: -8px; opacity: 1; }
}
.road-line {
  position: absolute; bottom: 8px; left: 0; right: 0; height: 3px;
  background: repeating-linear-gradient(90deg, #10b981 0, #10b981 18px, transparent 18px, transparent 36px);
  animation: roadScroll 0.6s linear infinite;
}
@keyframes roadScroll { to { background-position: 36px 0; } }

/* Mobile menu button — show only on mobile */
.mobile-menu-btn {
  display: none !important;
  background: none; border: none;
  font-size: 22px; color: var(--ink-900);
  padding: 8px; cursor: pointer;
  border-radius: 8px;
}
.mobile-menu-btn:active { background: var(--ink-100); }
@media (max-width: 1024px) {
  .mobile-menu-btn { display: block !important; }
}

/* Mobile bottom nav — call tab highlight */
.mobile-nav-call { color: var(--primary) !important; }
.mobile-nav-call i { color: var(--primary) !important; }
.mobile-nav-call span { color: var(--primary) !important; font-weight: 800 !important; }

/* Fix radar dot CSS custom property (calc fallback) */
.radar-dot {
  position: absolute;
  width: 11px; height: 11px;
  background: #ef4444; border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.25);
  animation: dotBlink 1.2s ease-in-out infinite;
}
/* Manually position the 3 dots since CSS sin/cos not universal */
.radar-dot:nth-child(5) { top: 28%; left: 72%; }
.radar-dot:nth-child(6) { top: 60%; left: 28%; }
.radar-dot:nth-child(7) { top: 75%; left: 62%; }


/* ================================================================
   FINAL FIX — Worker riding transparent bg + hamburger
   ================================================================ */

/* Worker riding: transparent PNG on gradient bg */
.worker-riding-scene {
  background: linear-gradient(135deg, #ecfdf5 0%, #bbf7d0 60%, #6ee7b7 100%) !important;
  border-radius: 20px !important;
  height: 140px !important;
}
.worker-ride-img {
  height: 132px !important;
  object-fit: contain !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  animation: rideInCenter 0.8s cubic-bezier(0.25,0.46,0.45,0.94) forwards !important;
}
@keyframes rideInCenter {
  from { left: 0%; opacity: 0; }
  to { left: 50%; opacity: 1; }
}

/* Mobile menu btn — ensure visible on mobile ONLY */
.mobile-menu-btn {
  display: none !important;
  background: transparent;
  border: none;
  font-size: 22px;
  color: var(--ink-900);
  padding: 8px 10px;
  cursor: pointer;
  border-radius: 10px;
  line-height: 1;
  transition: background 0.15s;
}
.mobile-menu-btn:active { background: rgba(0,0,0,0.06); }

@media (max-width: 768px) {
  .main-nav { display: none !important; }
  .mobile-menu-btn { display: flex !important; align-items: center; justify-content: center; }
}


