/* ============================================
   Labur Adda — Premium Design System
   ============================================ */

/* ===== Import Core Design System & Google Fonts (Plus Jakarta Sans & Inter) ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');
@import url('design-system.css');

/* ===== Legacy Token Compatibility Mapping ===== */
:root {
  --navy: var(--secondary);
  --navy-2: var(--secondary-hover);
  --navy-light: #1976D2;
  --blue: var(--primary);
  --blue-hover: var(--primary-hover);
  --blue-light: var(--primary-light);
  --blue-sky: #4DA8FF;
  --amber: #FFE066;
  --amber-dark: #F59E0B;
  --amber-light: #FFF8D6;
  --amber-glow: rgba(255, 224, 102, 0.4);
  --text-dark: var(--text-primary);
  --text-muted: var(--text-secondary);
  --text-light: #94a3b8;
  --bg-soft: var(--bg-secondary);
  --bg-card: var(--card-bg);
  --border-soft: var(--border);
  --green: #1976D2;       /* overridden: brand blue, no green on site */
  --green-light: #E3F2FD; /* overridden: brand blue light tint */
  --radius: var(--radius-lg);
  --radius-sm: var(--radius-md);
  --radius-xs: var(--radius-sm);
  --shadow-xs: var(--shadow-sm);
  --shadow-amber: 0 6px 20px rgba(245, 158, 11, 0.35);
  --ff-head: var(--font-family);
  --ff-body: var(--font-family);
  --transition: var(--transition-normal);
  --transition-slow: var(--transition-smooth);
  --transition-bounce: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  color: var(--text-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 154px;
  overflow-x: clip;
}

@media (max-width: 991px) {
  body {
    padding-top: 104px;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 96px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 90px;
  }
}

body.drawer-open-body {
  overflow: hidden !important;
  touch-action: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.text-muted-2 {
  color: var(--text-muted) !important;
}

.container-xl {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ===== Page Load Animation (Opacity only to keep fixed position intact) ===== */
@keyframes pageIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body {
  animation: pageIn 0.3s ease both;
  transform: none !important;
}

/* ===== Keyframes ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.88);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 6px 16px var(--amber-glow);
  }

  50% {
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.45), 0 0 0 8px rgba(25, 118, 210, 0.1);
  }
}

@keyframes rippleEffect {
  from {
    transform: scale(0);
    opacity: 1;
  }

  to {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes blinkCursor {
  50% {
    opacity: 0;
  }
}

@keyframes slideDrawerIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes slideDrawerOut {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes overlayIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left.in {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right.in {
  opacity: 1;
  transform: none;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-scale.in {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.stagger-1 {
  transition-delay: 0.1s !important;
}

.stagger-2 {
  transition-delay: 0.2s !important;
}

.stagger-3 {
  transition-delay: 0.3s !important;
}

.stagger-4 {
  transition-delay: 0.4s !important;
}

.stagger-5 {
  transition-delay: 0.5s !important;
}

.stagger-6 {
  transition-delay: 0.6s !important;
}

/* ===== Buttons ===== */
.btn {
  font-family: var(--ff-body);
  font-weight: 600;
  border-radius: 12px !important;
  padding: 0.68rem 1.5rem;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 50% 50%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  opacity: 0;
  transition: none;
}

.btn.ripple-active::after {
  animation: rippleEffect 0.55s ease-out;
}

.btn-amber {
  background: linear-gradient(135deg, #FFE066 0%, #F59E0B 100%);
  color: #0F172A !important;
  border: 1.5px solid #F59E0B !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-amber:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.45);
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%) !important;
  color: #0F172A !important;
}

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

.btn-outline-navy {
  background: #fff !important;
  color: var(--primary) !important;
  border: 1.5px solid var(--primary) !important;
}

.btn-outline-navy:hover {
  border-color: var(--primary-hover) !important;
  color: #ffffff !important;
  background: var(--primary) !important;
  transform: translateY(-2px);
}

.btn-navy {
  background: linear-gradient(135deg, var(--primary) 0%, var(--navy) 100%) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 6px 18px rgba(25, 118, 210, 0.3);
}

.btn-navy:hover {
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--navy-2) 100%) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(25, 118, 210, 0.4);
}

/* Pulse animation for primary CTA */
.btn-cta-pulse {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

section {
  padding: 78px 0;
}

@media (max-width: 767px) {
  section {
    padding: 48px 0;
  }
}

/* ===== Typography helpers ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1976D2;
  background: #E3F2FD;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid rgba(25, 118, 210, 0.25);
}

.section-title {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  margin-bottom: 10px;
  font-family: var(--ff-head);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 640px;
}

.section-head {
  margin-bottom: 50px;
}

.divider-amber {
  width: 56px;
  height: 3px;
  background: #FFE066;
  border-radius: 3px;
  margin-bottom: 18px;
}

.text-navy {
  color: var(--navy) !important;
}

.text-amber {
  color: #D97706 !important;
}

.text-blue {
  color: #1976D2 !important;
}

/* ===== Site Header — Sticky / Fixed Top ===== */
.site-header-wrapper {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1030 !important;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(17, 24, 39, 0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* Top info bar */
.header-topbar {
  background: linear-gradient(90deg, #0B192C 0%, #0F294A 60%, #1976D2 100%);
  color: #E2E8F0;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-topbar a {
  color: #E3F2FD;
  text-decoration: none;
  transition: color 0.2s;
}

.header-topbar a:hover {
  color: #FFE066;
}

.topbar-badge {
  background: rgba(255, 224, 102, 0.18);
  color: #FFE066;
  border: 1px solid rgba(255, 224, 102, 0.35);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 0.73rem;
  font-weight: 600;
}

/* Main header bar */
.header-main {
  background: #ffffff;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  overflow: visible;             /* ensure nothing clips inside */
}

/* ===== Laptop/Desktop Nav Actions — Login & Register always visible ===== */
.header-nav-actions {
  display: none;                 /* mobile default — Bootstrap d-lg-flex overrides this */
  align-items: center;
  gap: 8px;
  flex-shrink: 0;                /* NEVER compress — pushes search to shrink first */
  white-space: nowrap;
  min-width: max-content;        /* always show full button text */
}

@media (min-width: 992px) {
  .header-nav-actions {
    display: flex !important;    /* override d-none on laptop+ */
  }

  /* Ensure search bar shrinks before the action buttons do */
  .header-main .flex-grow-1 {
    min-width: 0;
    max-width: 440px;
  }
}

/* Laptops & medium desktops (992px to 1366px): keep buttons nicely inward */
@media (min-width: 992px) and (max-width: 1366px) {
  .header-main .container-fluid {
    padding-left: 20px !important;
    padding-right: 32px !important;
  }
  .header-search-form {
    max-width: 320px !important;
    margin: 0 12px !important;
  }
  .header-nav-actions {
    margin-right: 12px !important;
  }
}

/* Header search form */
.header-search-form {
  flex: 1;
  max-width: 520px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  background: var(--bg-soft);
  border: 1.5px solid var(--border-soft);
  border-radius: 12px;
  padding: 0 14px;
  gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.header-search-form:focus-within {
  border-color: #1976D2;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.18);
}

.header-search-form .search-icon {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.header-search-form input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.85rem;
  color: var(--text-dark);
  padding: 9px 0;
  min-width: 0;
}

.header-search-form input::placeholder {
  color: var(--text-muted);
}

.header-search-form button {
  background: linear-gradient(135deg, #FFE066 0%, #FBBF24 100%);
  color: #0F172A;
  border: 1px solid #F59E0B;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.25);
}

.header-search-form button:hover {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  color: #0F172A;
  transform: translateY(-1px);
}

/* Header nav action links */
.header-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.header-link-btn:hover {
  background: #E3F2FD;
  color: #1976D2;
}

.header-link-btn.accent-pill {
  background: #FFF8D6;
  color: #B45309;
  border: 1px solid #FFF8D6;
}

/* Category nav bar */
.header-catbar {
  background: #f8fafc;
  border-top: 1px solid var(--border-soft);
  padding: 0;
  overflow: hidden;
}

.cat-nav-scroll {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding: 8px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cat-nav-scroll::-webkit-scrollbar {
  display: none;
}

.cat-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  background: #fff;
  border: 1.5px solid var(--border-soft);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  flex-shrink: 0;
}

.cat-nav-pill:hover,
.cat-nav-pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ===== Navbar — Fixed top on mobile, tablet, and laptop ===== */
.navbar-la {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1030 !important;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  padding: 10px 0;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  /* Never hide on scroll — pinned to top on all screen sizes */
}

.navbar-la.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(17, 24, 39, 0.12);
  border-bottom-color: transparent;
}

.navbar-la.nav-hidden {
  transform: none !important;
}

.brand-la {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  text-decoration: none;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #FFE066 0%, #4DA8FF 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.25);
  transition: var(--transition-bounce);
  flex-shrink: 0;
}

.brand-icon:hover {
  transform: rotate(-8deg) scale(1.1);
}

.brand-text {
  line-height: 1.15;
  white-space: nowrap;
}

.brand-text .t1 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: #1976D2;
  white-space: nowrap;
}

.brand-text .t1 span {
  color: #F59E0B;
}

.brand-text .t2 {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.nav-la .nav-link {
  color: var(--text-dark) !important;
  font-weight: 600;
  font-size: 0.93rem;
  padding: 10px 15px !important;
  position: relative;
  transition: var(--transition);
}

.nav-la .nav-link::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 4px;
  height: 2.5px;
  background: #FFE066;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-la .nav-link.active::after,
.nav-la .nav-link:hover::after {
  transform: scaleX(1);
}

.nav-la .nav-link.active,
.nav-la .nav-link:hover {
  color: #1976D2 !important;
}

.nav-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  color: var(--navy);
  border: 1.5px solid var(--border-soft);
  transition: var(--transition-bounce);
}

.nav-icon-btn:hover {
  background: #E3F2FD;
  color: #1976D2;
  border-color: #1976D2;
  transform: scale(1.1);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Mobile Hamburger ===== */
.navbar-toggler {
  border: none !important;
  padding: 8px !important;
  background: none !important;
  box-shadow: none !important;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none;
}

.hamburger-box {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  pointer-events: none;
  /* button handles click */
}

.hamburger-box span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--navy);
  border-radius: 3px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease,
    width 0.35s ease;
  transform-origin: center;
}

/* Hamburger → X (is-open class on the BUTTON) */
#drawerToggle.is-open .hamburger-box span:nth-child(1) {
  transform: translateY(8.75px) rotate(45deg);
}

#drawerToggle.is-open .hamburger-box span:nth-child(2) {
  opacity: 0;
  width: 0;
}

#drawerToggle.is-open .hamburger-box span:nth-child(3) {
  transform: translateY(-8.75px) rotate(-45deg);
}

/* ===== Mobile Drawer Navigation ===== */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(11, 21, 38, 0.65);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  height: 100dvh;
  background: #ffffff;
  z-index: 1060;
  transform: translate3d(-100%, 0, 0);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  will-change: transform;
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 40px rgba(11, 21, 38, 0.22);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.nav-drawer.active {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: all;
}


.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-soft);
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 2;
}

.drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border-soft);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition-bounce);
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.drawer-close:hover,
.drawer-close:active {
  background: #fde8e8;
  color: #e53e3e;
  border-color: #fca5a5;
  transform: rotate(90deg) scale(1.1);
}

.drawer-nav {
  padding: 16px 14px;
  flex: 1;
}

.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 12px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.97rem;
  margin-bottom: 4px;
  transition: var(--transition);
  position: relative;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.drawer-nav a:active {
  background: var(--amber-light);
  transform: scale(0.98);
}

.drawer-nav a.active,
.drawer-nav a:hover {
  background: var(--amber-light);
  color: var(--amber-dark);
}

.drawer-nav a .nav-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.drawer-nav a.active .nav-icon,
.drawer-nav a:hover .nav-icon {
  background: var(--amber);
  color: var(--navy);
}

.drawer-divider {
  height: 1px;
  background: var(--border-soft);
  margin: 10px 14px;
}

.drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  background: var(--bg-soft);
  position: sticky;
  bottom: 0;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(160deg, #FFF9EC 0%, #FFFBF3 50%, #FFFFFF 100%);
  padding: 72px 0 96px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  font-family: var(--ff-head);
}

.hero .accent {
  color: var(--amber-dark);
}

.hero p.lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.hero-img-wrap img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
}

.trust-pill:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.trust-pill i {
  color: var(--amber-dark);
}

/* Typing cursor */
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--amber);
  vertical-align: middle;
  margin-left: 2px;
  animation: blinkCursor 0.9s step-end infinite;
}

.search-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid var(--border-soft);
}

.search-card .search-field {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-right: 1px solid var(--border-soft);
}

.search-card .search-field:last-of-type {
  border-right: none;
}

.search-card select,
.search-card input {
  border: none;
  outline: none;
  width: 100%;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: transparent;
}

.search-card i {
  color: var(--amber-dark);
}

/* ===== Service Cards ===== */
.service-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  cursor: pointer;
}

.service-card:hover {
  box-shadow: 0 16px 48px rgba(17, 24, 39, 0.11);
  transform: translateY(-6px);
  border-color: transparent;
}

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  transition: var(--transition-bounce);
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-5deg);
}

.service-card h6 {
  font-size: 0.98rem;
  margin: 0;
}

/* icon color variants */
.ic-yellow {
  background: #FFF8D6;
  color: #B45309;
}

.ic-blue {
  background: #E3F2FD;
  color: #1976D2;
}

.ic-teal {
  background: #E0F2FE;
  color: #0284C7;
}

.ic-orange {
  background: #FDE7D5;
  color: #E07C2C;
}

.ic-purple {
  background: #EFE4FE;
  color: #8B5CF6;
}

.ic-red {
  background: #FDE1E5;
  color: #E9536B;
}

.ic-amber2 {
  background: #FFF8D6;
  color: #D97706;
}

.ic-green {
  background: #E3F2FD;
  color: #1976D2;
}

.ic-indigo {
  background: #E0E7FF;
  color: #4338CA;
}

.ic-cyan {
  background: #CFFAFE;
  color: #0E7490;
}

.ic-rose {
  background: #FCE7F3;
  color: #BE185D;
}

.ic-emerald {
  background: #E3F2FD;
  color: #1976D2;
}

.ic-slate {
  background: #E2E8F0;
  color: #334155;
}

/* ===== Stats Strip ===== */
.stats-strip {
  background: linear-gradient(135deg, #0B192C 0%, #0F294A 50%, #1976D2 100%);
  border: 1px solid rgba(77, 168, 255, 0.25);
  box-shadow: 0 14px 34px rgba(11, 25, 44, 0.2);
  border-radius: 22px;
  padding: 32px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 224, 102, 0.15), transparent 70%);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-item .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 224, 102, 0.2);
  color: #FFE066;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition-bounce);
}

.stat-item:hover .ic {
  background: rgba(255, 224, 102, 0.3);
  transform: scale(1.1) rotate(-5deg);
}

.stat-item h3 {
  color: #fff;
  font-size: 1.65rem;
  margin: 0;
  font-weight: 800;
}

.stat-item span {
  color: #E3F2FD;
  font-size: 0.82rem;
}

/* ===== How it works cards ===== */
.step-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--amber-light);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px var(--amber-glow);
  transition: var(--transition-bounce);
}

.step-card:hover .step-num {
  transform: scale(1.2);
  box-shadow: 0 8px 22px rgba(255, 184, 0, 0.45);
}

.step-icon-lg {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.step-arrow {
  color: var(--border-soft);
  font-size: 1.6rem;
}

/* ===== App Promo (Matched with Homepage Review Section) ===== */
.app-promo {
  background: radial-gradient(circle at top right, rgba(20, 83, 45, 0.45), transparent 70%), radial-gradient(circle at bottom left, rgba(77, 168, 255, 0.1), transparent 60%), #081d14;
  border: 1px solid rgba(77, 168, 255, 0.22);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  padding: 58px 48px;
  color: #fff;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.app-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 90% 20%, rgba(77, 168, 255, 0.14), transparent 60%);
  pointer-events: none;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
}

.store-badge:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: var(--shadow-amber);
}

/* ===== Testimonials ===== */
.testi-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  border: 1px solid var(--border-soft);
  transition: var(--transition);
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background: #fff;
}

.testi-card i.quote {
  color: var(--amber);
  font-size: 1.8rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--amber-light);
}

.stars {
  color: #F59E0B;
  font-size: 0.82rem;
}

.testimonials-swiper {
  padding: 12px 4px 16px !important;
}

.testi-swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  width: 100% !important;
  margin-top: 24px !important;
  margin-bottom: 8px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 6px !important;
  z-index: 5;
}

.testi-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #94a3b8;
  opacity: 0.45;
  margin: 0 4px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border-radius: 50%;
}

.testi-swiper-pagination .swiper-pagination-bullet-active {
  background: #1976D2 !important;
  width: 28px;
  border-radius: 8px;
  opacity: 1;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.35);
}

/* ===== Footer ===== */
.footer-la {
  background: #0B192C;
  color: #94a3b8;
  padding: 64px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.footer-la h6 {
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 0.01em;
}

.footer-la h6::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: #FFE066;
  border-radius: 2px;
}

.footer-la ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-la ul li {
  margin-bottom: 11px;
}

.footer-la ul li a {
  color: #94a3b8;
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-la ul li a i {
  font-size: 0.75rem;
  color: #4DA8FF;
  transition: transform 0.25s ease, color 0.25s ease;
}

.footer-la ul li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-la ul li a:hover i {
  color: #FFE066;
  transform: translateX(2px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #e2e8f0;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #FFE066;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: var(--transition-bounce);
}

.footer-contact-item:hover .footer-contact-icon {
  background: #1976D2;
  color: #ffffff;
  transform: scale(1.08);
}

.footer-la a.social-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #94a3b8;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 8px;
  margin-bottom: 0 !important;
  transition: var(--transition-bounce);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.footer-la a.social-circle:hover {
  background: #1976D2;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(25, 118, 210, 0.35);
  border-color: #1976D2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin-top: 48px;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-trust-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 4px 12px;
  color: #e2e8f0;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== FOOTER WE ACCEPT & PAYMENT BADGES ===== */
.footer-payment-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-we-accept-text {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
}

.footer-pay-chip {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  padding: 4px 9px;
  font-size: 0.76rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
  white-space: nowrap;
}

/* ===== FOOTER DEVELOPER CREDIT ===== */
.footer-dev-credit {
  font-size: 0.8rem;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 3px;
}

.dev-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.15) 0%, rgba(77, 168, 255, 0.22) 100%);
  border: 1px solid rgba(77, 168, 255, 0.45);
  padding: 3px 12px;
  border-radius: 50px;
  color: #4DA8FF;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.dev-brand-badge:hover {
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.3) 0%, rgba(77, 168, 255, 0.4) 100%);
  border-color: #4DA8FF;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(77, 168, 255, 0.3);
}

.dev-sparkle {
  color: #FFE066;
  font-size: 0.78rem;
  animation: devPulse 2.2s infinite ease-in-out;
}

@keyframes devPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.22);
    opacity: 1;
    filter: drop-shadow(0 0 4px #FFE066);
  }
}

/* ===== TRUST / WARRANTY STRIP (Section 7) ===== */
.trust-payment-bar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.trust-info-cell {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cell-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #E3F2FD;
  color: #1976D2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
  border: 1.5px solid #BAE6FD;
}

.trust-info-cell:hover .cell-icon {
  background: #1976D2;
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(25, 118, 210, 0.3);
}

/* ===== OFFER / PROMO STRIP (Section 6) ===== */
.offer-promo-strip {
  background: linear-gradient(135deg, #0B192C 0%, #0F294A 50%, #1976D2 100%);
  border-radius: 22px;
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(11, 25, 44, 0.35);
  border: 1px solid rgba(77, 168, 255, 0.3);
}

.offer-promo-strip::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 224, 102, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.coupon-copy-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px dashed rgba(255, 224, 102, 0.6);
  border-radius: 12px;
  padding: 8px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.coupon-copy-badge:hover {
  background: rgba(255, 224, 102, 0.15);
  border-color: #FFE066;
}

.coupon-copy-badge code {
  color: #FFE066;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-family: 'Courier New', monospace;
}

/* ===== APP DOWNLOAD SECTION (Section 8) ===== */
.app-card-block {
  background: linear-gradient(145deg, #0B192C 0%, #0F294A 100%);
  border-radius: 22px;
  padding: 36px 36px 36px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(11, 25, 44, 0.35);
  border: 1px solid rgba(77, 168, 255, 0.2);
}

.app-card-block::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(25, 118, 210, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.app-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px 22px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.app-badge-btn:hover {
  background: rgba(25, 118, 210, 0.3);
  border-color: #1976D2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(25, 118, 210, 0.3);
}

/* ===== CALLBACK FORM CARD (Section 8 Right) ===== */
.callback-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 36px 32px;
  height: 100%;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.07);
}

/* ===== Page header (inner pages) ===== */
.page-header {
  background: linear-gradient(135deg, var(--bg-soft) 0%, #f0f3f8 100%);
  padding: 46px 0;
  border-bottom: 1px solid var(--border-soft);
}

.breadcrumb-la {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb-la a {
  color: var(--text-muted);
}

.breadcrumb-la a:hover {
  color: var(--amber-dark);
}

.breadcrumb-la .active {
  color: var(--amber-dark);
  font-weight: 600;
}

.page-header img {
  border-radius: var(--radius);
  width: 100%;
}

.verified-float {
  position: absolute;
  bottom: -18px;
  left: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.verified-float i {
  color: var(--green);
}

/* ===== Services listing ===== */
.cat-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 4px;
  transition: var(--transition);
}

.cat-list a.active {
  background: var(--amber-light);
  color: var(--amber-dark);
}

.cat-list a:hover {
  background: var(--bg-soft);
  color: var(--amber-dark);
  transform: translateX(4px);
}

.filter-box {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px;
}

.svc-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px;
  height: 100%;
  transition: var(--transition);
}

.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: transparent;
}

.svc-card .service-icon {
  margin: 0 0 14px;
}

.svc-price {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.05rem;
}

.svc-rating {
  color: #F59E0B;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== Worker card ===== */
.worker-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  transition: var(--transition);
}

.worker-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-2px);
}

.worker-avatar {
  position: relative;
  flex-shrink: 0;
}

.worker-avatar img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--amber-light);
  transition: var(--transition-bounce);
}

.worker-card:hover .worker-avatar img {
  border-color: var(--amber);
  transform: scale(1.05);
}

.online-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.25);
}

.worker-info {
  flex: 1 1 260px;
  min-width: 0;
}

.worker-info h6 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.worker-info h6 i.fa-badge-check,
.worker-info h6 .verify-ic {
  color: #2F6FE4;
  font-size: 0.85rem;
}

.worker-tags .badge {
  background: var(--bg-soft);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.72rem;
  margin-right: 6px;
  margin-top: 6px;
  border-radius: 6px;
}

.worker-price {
  text-align: right;
  min-width: 140px;
}

.worker-price .price {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
}

.status-available {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
}

.range-slider {
  accent-color: var(--amber);
}

.form-check-input:checked {
  background-color: var(--amber);
  border-color: var(--amber);
}

/* ===== Process / How it works page ===== */
.process-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.process-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.process-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px var(--amber-glow);
  transition: var(--transition-bounce);
}

.process-card:hover .process-num {
  transform: scale(1.2) rotate(-10deg);
}

.process-img {
  width: 80px;
  margin-bottom: 14px;
}

.feature-pill {
  background: linear-gradient(135deg, var(--amber-light) 0%, #fff9e6 100%);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid #f0e4a0;
  transition: var(--transition);
}

.feature-pill:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-pill .ic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-dark);
  font-size: 1.2rem;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px var(--amber-glow);
  transition: var(--transition-bounce);
}

.feature-pill:hover .ic {
  transform: rotate(-10deg) scale(1.1);
}

.cta-dark {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2840 100%);
  border-radius: var(--radius);
  padding: 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-dark::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.12), transparent 70%);
}

.cta-dark .ic-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 184, 0, 0.15);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
}

.cta-dark .ic-circle:hover {
  background: var(--amber);
  color: var(--navy);
  transform: scale(1.1);
}

/* ===== About page ===== */
.why-card {
  text-align: center;
  padding: 22px 14px;
}

.why-card .ic-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--amber-dark);
  transition: var(--transition-bounce);
}

.why-card:hover .ic-circle {
  background: var(--amber-light);
  transform: scale(1.1) rotate(-10deg);
}

.mini-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -10px;
}

.mini-avatars img:first-child {
  margin-left: 0;
}

.float-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  animation: float 4s ease-in-out infinite;
}

/* ===== Contact page ===== */
.contact-form-card,
.contact-info-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 30px;
  height: 100%;
  transition: var(--transition);
}

.contact-form-card:hover,
.contact-info-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-form-card .form-control {
  border-radius: 12px;
  padding: 0.75rem 1rem;
  border-color: var(--border-soft);
  transition: var(--transition);
}

.contact-form-card .form-control:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.15);
}

.info-row {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.info-row .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--amber-light);
  color: var(--amber-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-bounce);
}

.info-row:hover .ic {
  background: var(--amber);
  color: var(--navy);
  transform: scale(1.1);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--border-soft);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.help-pill {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.help-pill:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* ===== Forms ===== */
.form-control,
.form-select {
  border-radius: 12px !important;
  border-color: var(--border-soft) !important;
  padding: 0.7rem 1rem !important;
  font-family: var(--ff-body) !important;
  transition: var(--transition) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--amber) !important;
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.15) !important;
}

/* ===== Cards (generic) ===== */
.card {
  border-radius: var(--radius) !important;
  border-color: var(--border-soft) !important;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md) !important;
}

/* ===== Badges ===== */
.badge {
  font-family: var(--ff-body);
  font-weight: 600;
  border-radius: 6px;
}

/* ===== Alert (flash messages) ===== */
.alert {
  border-radius: var(--radius-sm) !important;
  border: none !important;
  font-weight: 500;
  animation: fadeInUp 0.4s ease;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
  background: #c1c9d8;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--amber);
}

/* ===== Selection ===== */
::selection {
  background: var(--amber);
  color: var(--navy);
}

/* ===== Smooth Image Load ===== */
img {
  transition: opacity 0.3s ease;
}

/* ===== Loading Skeleton ===== */
.skeleton {
  background: linear-gradient(90deg, #f0f3f8 25%, #e4e8f0 50%, #f0f3f8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

/* ===== Utility ===== */
.rounded-la {
  border-radius: var(--radius) !important;
}

.rounded-la-sm {
  border-radius: var(--radius-sm) !important;
}

.shadow-la {
  box-shadow: var(--shadow-md) !important;
}

.bg-amber-light {
  background: var(--amber-light) !important;
}

.fw-800 {
  font-weight: 800 !important;
}

/* ===== Mobile Navigation (Bootstrap collapse hide on all screens, use drawer instead) ===== */
@media (max-width: 991px) {
  .navbar-collapse {
    display: none !important;
  }
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .search-card .search-field {
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
    width: 100%;
  }

  .app-promo {
    padding: 40px 28px;
  }
}

/* Tablet (768–991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .stat-item h3 {
    font-size: 1.4rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .worker-price {
    min-width: 120px;
  }

  .nav-drawer {
    width: min(380px, 75vw);
  }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
  .section-title {
    font-size: clamp(1.5rem, 5.5vw, 1.9rem);
  }

  .hero {
    padding: 44px 0 64px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 7vw, 2.4rem);
  }

  .hero-img-wrap {
    animation: none;
    margin-top: 24px;
  }

  .stats-strip {
    border-radius: 16px;
  }

  .stat-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .stat-item .ic {
    margin: 0 auto;
  }

  .worker-price {
    width: 100%;
    text-align: left;
    margin-top: 8px;
  }

  .app-promo {
    padding: 30px 20px;
  }

  section {
    padding: 40px 0;
  }

  .step-arrow {
    display: none;
  }

  /* Smaller tap targets for mobile */
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .drawer-nav a {
    padding: 12px 12px;
    font-size: 0.93rem;
  }
}

/* Small phones (< 480px) */
@media (max-width: 480px) {
  .container-xl {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .brand-text .t1 {
    font-size: 1.1rem;
  }

  .nav-drawer {
    width: 90vw;
  }

  .service-card {
    padding: 20px 14px;
  }

  .stats-strip {
    padding: 22px 16px;
  }
}

/* ============================================
   Labour Adda — Marketplace V2 Design Components
   ============================================ */

/* Badges */
.badge-verified-v2 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #E3F2FD;
  color: #1976D2;
  border: 1px solid #BAE6FD;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.73rem;
  font-weight: 700;
}

.badge-available-v2 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FFF8D6;
  color: #B45309;
  border: 1px solid #FFF8D6;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.73rem;
  font-weight: 700;
}

/* Subcategory Filter Wrapper & Skills Chips */
.subcat-filter-wrapper {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

/* Sub-category filter chip strip — scrollable on all screen sizes */
.subcat-chips-strip {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
  padding-bottom: 4px;
}

.subcat-chips-strip::-webkit-scrollbar {
  height: 4px;
}
.subcat-chips-strip::-webkit-scrollbar-track {
  background: transparent;
}
.subcat-chips-strip::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 4px;
}

/* RECTANGULAR skill/subcategory filter chips — full words always visible */
.subcat-chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;           /* rectangular, not pill */
  text-decoration: none;
  white-space: nowrap;          /* keeps each chip on one line */
  flex-shrink: 0;               /* chips never compress — strip scrolls instead */
  transition: all 0.2s ease;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  color: #334155;
  line-height: 1.3;
}

.subcat-chip-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.subcat-chip-btn.active {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-color: #f59e0b;
  color: #111827;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.35);
}

.subcat-chip-btn.active i {
  color: #111827;
}

/* Worker Skills Badges inside Cards — rectangular, full word visible */
.badge-skill-v2 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  border-radius: 6px;           /* rectangular badge */
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: normal;          /* allow full word to show, no truncation */
  word-break: break-word;
  line-height: 1.3;
  transition: all 0.15s ease;
}

.badge-skill-v2:hover {
  background: #dbeafe;
  color: #1e40af;
  border-color: #93c5fd;
  text-decoration: none;
}

.badge-rating-v2 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #FFF8D6;
  color: #B45309;
  border: 1px solid #FFF8D6;
  border-radius: 8px;
  padding: 3px 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

/* Worker Card V2 */
.worker-card-v2 {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  position: relative;
}

.worker-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(25, 118, 210, 0.12);
  border-color: #1976D2;
}

.worker-card-v2 .worker-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.worker-card-v2 .worker-name {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.worker-card-v2 .worker-title {
  color: var(--text-muted);
  font-size: 0.84rem;
  margin-bottom: 10px;
}

.worker-card-v2 .worker-meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
  background: #f8fafc;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.78rem;
  color: #475569;
}

.worker-card-v2 .worker-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.worker-card-v2 .worker-meta-item i {
  color: var(--amber-dark);
}

.worker-card-v2 .worker-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.worker-card-v2 .worker-price-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
}

.worker-card-v2 .worker-price-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Category Cards V2 */
.category-card-v2 {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 24px 18px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
  text-decoration: none !important;
}

.category-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  border-color: var(--amber);
}

.category-card-v2 .cat-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 14px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-card-v2:hover .cat-icon-box {
  transform: scale(1.12) rotate(-6deg);
}

.category-card-v2 h6 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.category-card-v2 .cat-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.category-card-v2 .cat-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--amber-dark);
  background: var(--amber-light);
  padding: 3px 10px;
  border-radius: 999px;
  margin-top: auto;
}

/* Horizontal Category Scroll Bar (Mobile First) */
.category-scroll-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-scroll-container::-webkit-scrollbar {
  display: none;
}

.cat-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  color: #334155;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.cat-pill-btn:hover,
.cat-pill-btn.active {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(11, 21, 38, 0.2);
}

.cat-pill-btn i {
  color: var(--amber);
}

/* Trust Benefit Card V2 */
.trust-card-v2 {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 26px 20px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

.trust-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.trust-card-v2 .icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.trust-card-v2 h6 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.trust-card-v2 p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* ===== TRUST CARD V2 — SOFT PASTEL COLOR THEMES (How It Works) ===== */
/* Card 1: Soft Blue (Worker KYC) */
.trust-card-blue,
.trust-card-v2:has(.ic-blue) {
  background: linear-gradient(155deg, #ffffff 0%, #f0f7ff 45%, #e0f2fe 100%) !important;
  border: 1.5px solid #bae6fd !important;
}

.trust-card-blue:hover,
.trust-card-v2:has(.ic-blue):hover {
  border-color: #38bdf8 !important;
  box-shadow: 0 16px 36px rgba(2, 132, 199, 0.15) !important;
  transform: translateY(-6px);
}

.trust-card-blue .icon-wrap,
.trust-card-v2:has(.ic-blue) .icon-wrap {
  background: #E3F2FD !important;
  color: #1976D2 !important;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.15);
}

/* Card 2: Soft Warm Amber (Customer Discovery) */
.trust-card-amber,
.trust-card-v2:has(.ic-amber2) {
  background: linear-gradient(155deg, #ffffff 0%, #fffbeb 45%, #FFF8D6 100%) !important;
  border: 1.5px solid #FFF8D6 !important;
}

.trust-card-amber:hover,
.trust-card-v2:has(.ic-amber2):hover {
  border-color: #f59e0b !important;
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.15) !important;
  transform: translateY(-6px);
}

.trust-card-amber .icon-wrap,
.trust-card-v2:has(.ic-amber2) .icon-wrap {
  background: #FFF8D6 !important;
  color: #b45309 !important;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

/* Card 3: Soft Sky Blue (Instant Booking) */
.trust-card-green,
.trust-card-v2:has(.ic-green) {
  background: linear-gradient(155deg, #ffffff 0%, #E3F2FD 45%, #E3F2FD 100%) !important;
  border: 1.5px solid #E3F2FD !important;
}

.trust-card-green:hover,
.trust-card-v2:has(.ic-green):hover {
  border-color: #1976D2 !important;
  box-shadow: 0 16px 36px rgba(25, 118, 210, 0.15) !important;
  transform: translateY(-6px);
}

.trust-card-green .icon-wrap,
.trust-card-v2:has(.ic-green) .icon-wrap {
  background: #E3F2FD !important;
  color: #1976D2 !important;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.15);
}

/* Card 4: Soft Purple Lavender (Secure Payments) */
.trust-card-purple,
.trust-card-v2:has(.ic-purple) {
  background: linear-gradient(155deg, #ffffff 0%, #faf5ff 45%, #ede9fe 100%) !important;
  border: 1.5px solid #ddd6fe !important;
}

.trust-card-purple:hover,
.trust-card-v2:has(.ic-purple):hover {
  border-color: #a855f7 !important;
  box-shadow: 0 16px 36px rgba(168, 85, 247, 0.15) !important;
  transform: translateY(-6px);
}

.trust-card-purple .icon-wrap,
.trust-card-v2:has(.ic-purple) .icon-wrap {
  background: #ddd6fe !important;
  color: #6d28d9 !important;
  box-shadow: 0 4px 12px rgba(109, 40, 217, 0.15);
}

/* Card 5: Soft Teal Cyan (Ratings & Reviews) */
.trust-card-teal,
.trust-card-v2:has(.ic-teal) {
  background: linear-gradient(155deg, #ffffff 0%, #f0fdfa 45%, #ccfbf1 100%) !important;
  border: 1.5px solid #99f6e4 !important;
}

.trust-card-teal:hover,
.trust-card-v2:has(.ic-teal):hover {
  border-color: #14b8a6 !important;
  box-shadow: 0 16px 36px rgba(20, 184, 166, 0.15) !important;
  transform: translateY(-6px);
}

.trust-card-teal .icon-wrap,
.trust-card-v2:has(.ic-teal) .icon-wrap {
  background: #99f6e4 !important;
  color: #0f766e !important;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.15);
}

/* Card 6: Soft Rose Coral (24/7 Support) */
.trust-card-red,
.trust-card-v2:has(.ic-red) {
  background: linear-gradient(155deg, #ffffff 0%, #fff1f2 45%, #ffe4e6 100%) !important;
  border: 1.5px solid #fecdd3 !important;
}

.trust-card-red:hover,
.trust-card-v2:has(.ic-red):hover {
  border-color: #f43f5e !important;
  box-shadow: 0 16px 36px rgba(244, 63, 94, 0.15) !important;
  transform: translateY(-6px);
}

.trust-card-red .icon-wrap,
.trust-card-v2:has(.ic-red) .icon-wrap {
  background: #fecdd3 !important;
  color: #be123c !important;
  box-shadow: 0 4px 12px rgba(190, 18, 60, 0.15);
}

/* How It Works Timeline Process V2 */
.timeline-process-v2 {
  position: relative;
}

.timeline-step-v2 {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 30px 22px;
  height: 100%;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.timeline-step-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.09);
  border-color: var(--amber);
}

.timeline-step-v2 .step-num-v2 {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber) 0%, #ffcf2b 100%);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}

.timeline-step-v2 .step-icon-v2 {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #f8fafc;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  transition: var(--transition-bounce);
}

.timeline-step-v2:hover .step-icon-v2 {
  background: var(--amber-light);
  color: var(--amber-dark);
  transform: scale(1.1);
}

.timeline-step-v2 h5 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.timeline-step-v2 p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.55;
}

/* ===== TIMELINE PROCESS V2 — SOFT PASTEL COLOR THEMES (How It Works Page) ===== */

/* Customer Flow — Step 1: Blue (Choose Service) */
.timeline-card-blue,
#customer-flow .row>div:nth-child(1) .timeline-step-v2 {
  background: linear-gradient(155deg, #ffffff 0%, #f0f7ff 50%, #e0f2fe 100%) !important;
  border: 1.5px solid #bae6fd !important;
}

.timeline-card-blue:hover,
#customer-flow .row>div:nth-child(1) .timeline-step-v2:hover {
  border-color: #38bdf8 !important;
  box-shadow: 0 16px 36px rgba(2, 132, 199, 0.15) !important;
}

.timeline-card-blue .step-num-v2,
#customer-flow .row>div:nth-child(1) .timeline-step-v2 .step-num-v2 {
  background: linear-gradient(135deg, #4DA8FF 0%, #1976D2 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3) !important;
}

.timeline-card-blue .step-icon-v2,
#customer-flow .row>div:nth-child(1) .timeline-step-v2 .step-icon-v2 {
  background: #E3F2FD !important;
  color: #1976D2 !important;
}

/* Customer Flow — Step 2: Warm Amber (Compare Workers) */
.timeline-card-amber,
#customer-flow .row>div:nth-child(2) .timeline-step-v2 {
  background: linear-gradient(155deg, #ffffff 0%, #fffbeb 50%, #FFF8D6 100%) !important;
  border: 1.5px solid #FFF8D6 !important;
}

.timeline-card-amber:hover,
#customer-flow .row>div:nth-child(2) .timeline-step-v2:hover {
  border-color: #f59e0b !important;
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.15) !important;
}

.timeline-card-amber .step-num-v2,
#customer-flow .row>div:nth-child(2) .timeline-step-v2 .step-num-v2 {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3) !important;
}

.timeline-card-amber .step-icon-v2,
#customer-flow .row>div:nth-child(2) .timeline-step-v2 .step-icon-v2 {
  background: #FFF8D6 !important;
  color: #b45309 !important;
}

/* Customer Flow — Step 3: Purple / Lavender (Book Slot) */
.timeline-card-purple,
#customer-flow .row>div:nth-child(3) .timeline-step-v2 {
  background: linear-gradient(155deg, #ffffff 0%, #faf5ff 50%, #ede9fe 100%) !important;
  border: 1.5px solid #ddd6fe !important;
}

.timeline-card-purple:hover,
#customer-flow .row>div:nth-child(3) .timeline-step-v2:hover {
  border-color: #a855f7 !important;
  box-shadow: 0 16px 36px rgba(168, 85, 247, 0.15) !important;
}

.timeline-card-purple .step-num-v2,
#customer-flow .row>div:nth-child(3) .timeline-step-v2 .step-num-v2 {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3) !important;
}

.timeline-card-purple .step-icon-v2,
#customer-flow .row>div:nth-child(3) .timeline-step-v2 .step-icon-v2 {
  background: #ddd6fe !important;
  color: #6d28d9 !important;
}

/* Customer Flow — Step 4: Sky Blue (Inspect & Pay) */
.timeline-card-green,
#customer-flow .row>div:nth-child(4) .timeline-step-v2 {
  background: linear-gradient(155deg, #ffffff 0%, #E3F2FD 50%, #E3F2FD 100%) !important;
  border: 1.5px solid #E3F2FD !important;
}

.timeline-card-green:hover,
#customer-flow .row>div:nth-child(4) .timeline-step-v2:hover {
  border-color: #1976D2 !important;
  box-shadow: 0 16px 36px rgba(25, 118, 210, 0.15) !important;
}

.timeline-card-green .step-num-v2,
#customer-flow .row>div:nth-child(4) .timeline-step-v2 .step-num-v2 {
  background: linear-gradient(135deg, #1976D2 0%, #1976D2 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3) !important;
}

.timeline-card-green .step-icon-v2,
#customer-flow .row>div:nth-child(4) .timeline-step-v2 .step-icon-v2 {
  background: #E3F2FD !important;
  color: #1976D2 !important;
}

/* Worker Flow — Step 1: Soft Teal (Free Registration) */
.timeline-card-teal,
#worker-flow .row>div:nth-child(1) .timeline-step-v2 {
  background: linear-gradient(155deg, #ffffff 0%, #f0fdfa 50%, #ccfbf1 100%) !important;
  border: 1.5px solid #99f6e4 !important;
}

.timeline-card-teal:hover,
#worker-flow .row>div:nth-child(1) .timeline-step-v2:hover {
  border-color: #14b8a6 !important;
  box-shadow: 0 16px 36px rgba(20, 184, 166, 0.15) !important;
}

.timeline-card-teal .step-num-v2,
#worker-flow .row>div:nth-child(1) .timeline-step-v2 .step-num-v2 {
  background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3) !important;
}

.timeline-card-teal .step-icon-v2,
#worker-flow .row>div:nth-child(1) .timeline-step-v2 .step-icon-v2 {
  background: #99f6e4 !important;
  color: #0f766e !important;
}

/* Worker Flow — Step 2: Deep Blue (KYC Verification) */
.timeline-card-emerald,
#worker-flow .row>div:nth-child(2) .timeline-step-v2 {
  background: linear-gradient(155deg, #ffffff 0%, #E3F2FD 50%, #E3F2FD 100%) !important;
  border: 1.5px solid #E3F2FD !important;
}

.timeline-card-emerald:hover,
#worker-flow .row>div:nth-child(2) .timeline-step-v2:hover {
  border-color: #1976D2 !important;
  box-shadow: 0 16px 36px rgba(25, 118, 210, 0.15) !important;
}

.timeline-card-emerald .step-num-v2,
#worker-flow .row>div:nth-child(2) .timeline-step-v2 .step-num-v2 {
  background: linear-gradient(135deg, #1976D2 0%, #1976D2 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3) !important;
}

.timeline-card-emerald .step-icon-v2,
#worker-flow .row>div:nth-child(2) .timeline-step-v2 .step-icon-v2 {
  background: #E3F2FD !important;
  color: #1976D2 !important;
}

/* Worker Flow — Step 3: Soft Sunset Orange (Receive Job Requests) */
.timeline-card-orange,
#worker-flow .row>div:nth-child(3) .timeline-step-v2 {
  background: linear-gradient(155deg, #ffffff 0%, #fff7ed 50%, #ffedd5 100%) !important;
  border: 1.5px solid #fed7aa !important;
}

.timeline-card-orange:hover,
#worker-flow .row>div:nth-child(3) .timeline-step-v2:hover {
  border-color: #ea580c !important;
  box-shadow: 0 16px 36px rgba(234, 88, 12, 0.15) !important;
}

.timeline-card-orange .step-num-v2,
#worker-flow .row>div:nth-child(3) .timeline-step-v2 .step-num-v2 {
  background: linear-gradient(135deg, #f97316 0%, #c2410c 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(194, 65, 12, 0.3) !important;
}

.timeline-card-orange .step-icon-v2,
#worker-flow .row>div:nth-child(3) .timeline-step-v2 .step-icon-v2 {
  background: #fed7aa !important;
  color: #c2410c !important;
}

/* Worker Flow — Step 4: Soft Violet Purple (Direct Payouts) */
.timeline-card-violet,
#worker-flow .row>div:nth-child(4) .timeline-step-v2 {
  background: linear-gradient(155deg, #ffffff 0%, #faf5ff 50%, #ede9fe 100%) !important;
  border: 1.5px solid #ddd6fe !important;
}

.timeline-card-violet:hover,
#worker-flow .row>div:nth-child(4) .timeline-step-v2:hover {
  border-color: #7c3aed !important;
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.15) !important;
}

.timeline-card-violet .step-num-v2,
#worker-flow .row>div:nth-child(4) .timeline-step-v2 .step-num-v2 {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(91, 33, 182, 0.3) !important;
}

.timeline-card-violet .step-icon-v2,
#worker-flow .row>div:nth-child(4) .timeline-step-v2 .step-icon-v2 {
  background: #ddd6fe !important;
  color: #6d28d9 !important;
}

/* Floating Hero Badges */
.hero-floating-card-1 {
  position: absolute;
  top: 20px;
  left: -20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}

.hero-floating-card-2 {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: float 6s ease-in-out infinite 1s;
}

/* Responsive Overrides for V2 Components */
@media (max-width: 991px) {
  .hero-floating-card-1 {
    left: 10px;
    top: 10px;
  }

  .hero-floating-card-2 {
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 576px) {
  .worker-card-v2 {
    padding: 18px;
  }

  .category-card-v2 {
    padding: 18px 12px;
  }

  .trust-card-v2 {
    padding: 20px 16px;
  }
}

/* ===== Icon colour variants (trust-card-v2 .icon-wrap modifier classes) ===== */
.icon-wrap.ic-blue {
  background: #E3F2FD;
  color: #1976D2;
}

.icon-wrap.ic-amber2 {
  background: #fff9e6;
  color: #B8860B;
}

.icon-wrap.ic-green {
  background: #E3F2FD;
  color: #1976D2;
}

.icon-wrap.ic-purple {
  background: #f5f3ff;
  color: #6d28d9;
}

.icon-wrap.ic-teal {
  background: #f0fdfa;
  color: #0f766e;
}

.icon-wrap.ic-red {
  background: #fef2f2;
  color: #b91c1c;
}

.icon-wrap.ic-navy {
  background: #e8ecf5;
  color: var(--navy);
}

/* ===== Standalone Social Circle (outside footer) ===== */
a.social-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

a.social-circle:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 18px rgba(255, 184, 0, 0.35);
}

/* ===== btn-outline-navy ===== */
.btn-outline-navy {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  border-radius: 12px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 6px 18px rgba(11, 21, 38, 0.2);
}

/* ===== btn-outline-light ===== */
.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* ===== Swiper Carousel Custom Styling ===== */
.swiper-pagination-bullet {
  background: #cbd5e1;
  opacity: 1;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--amber-dark) !important;
  width: 28px;
  border-radius: 999px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--navy);
  background: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border-soft);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.1rem;
  font-weight: 800;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--amber);
  color: var(--navy);
}

/* ========================================================
   PREMIUM DESIGN SYSTEM V3 — MULTI-LEVEL HEADER & SECTIONS
   ======================================================== */

/* ===== SITE HEADER WRAPPER ===== */
.site-header-wrapper {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1040 !important;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.25s ease;
}

.site-header-wrapper.scrolled {
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.12) !important;
}

/* --- 1. TOP INFORMATION BAR --- */
.header-topbar {
  background: #0B192C;
  color: #94a3b8;
  font-size: 0.78rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-topbar a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-topbar a:hover {
  color: #FFE066;
}

.topbar-badge {
  background: rgba(255, 224, 102, 0.18);
  color: #FFE066;
  border: 1px solid rgba(255, 224, 102, 0.35);
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* --- 2. MAIN HEADER --- */
.header-main {
  background: #ffffff;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
}

.header-main .container-xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Center Search Box */
.header-search-form {
  flex: 1;
  max-width: 540px;
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 999px;
  padding: 3px 6px 3px 18px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.header-search-form:focus-within {
  border-color: #1976D2;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(25, 118, 210, 0.15);
}

.header-search-form .search-icon {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-right: 10px;
}

.header-search-form input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.88rem;
  color: #1e293b;
  font-family: var(--ff-body);
}

.header-search-form input::placeholder {
  color: #94a3b8;
}

.header-search-form button {
  background: linear-gradient(135deg, #FFE066 0%, #FBBF24 100%);
  border: 1px solid #F59E0B;
  color: #0F172A;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 7px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search-form button:hover {
  transform: scale(1.03);
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
  color: #0F172A;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

/* Header Actions */
.header-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0 !important;
  white-space: nowrap;
}

@media (max-width: 1399px) {
  .header-nav-actions {
    gap: 7px;
  }
  .header-nav-actions .btn {
    padding: 6px 12px;
    font-size: 0.82rem;
  }
  .header-link-btn {
    padding: 6px 9px;
    font-size: 0.82rem;
  }
}

.header-link-btn {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  padding: 7px 12px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.header-link-btn:hover {
  background: #f1f5f9;
  color: var(--navy);
}

.category-card-premium {
  background: #ffffff;
  border: 1.5px solid #e8edf3;
  border-radius: 22px;
  padding: 26px 18px 22px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
}

.category-card-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 55%, rgba(25, 118, 210, 0.035) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.category-card-premium:hover::before {
  opacity: 1;
}

.category-card-premium:hover {
  transform: translateY(-7px);
  border-color: rgba(25, 118, 210, 0.3);
  box-shadow: 0 18px 40px rgba(25, 118, 210, 0.12), 0 4px 12px rgba(15, 23, 42, 0.06);
}

.cat-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin-bottom: 14px;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.category-card-premium:hover .cat-icon-circle {
  transform: scale(1.14) rotate(-6deg);
  box-shadow: 0 8px 22px var(--primary-shadow-color, rgba(25, 118, 210, 0.25));
}

.category-card-premium h6 {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.category-card-premium .cat-meta {
  font-size: 0.77rem;
  color: #64748b;
  margin-bottom: 10px;
  line-height: 1.4;
}

.category-card-premium .cat-price-badge {
  font-size: 0.71rem;
  font-weight: 700;
  background: #f1f5f9;
  color: #334155;
  padding: 4px 12px;
  border-radius: 999px;
  transition: all 0.2s ease;
  border: 1px solid #e2e8f0;
}

.category-card-premium:hover .cat-price-badge {
  background: var(--primary-light);
  color: var(--primary-hover);
  border-color: rgba(25, 118, 210, 0.25);
}

/* ========================================================
   CATEGORY CARD PASTEL THEMES (Home & All Services Directory)
   Soft, vibrant pastel tints matching each category's icon
   ======================================================== */

.category-card-v2 .border-top {
  border-color: rgba(0, 0, 0, 0.06) !important;
}

/* 1. Blue / Construction / Raj Mistri */
.theme-card-green,
.theme-card-construction,
.theme-card-raj-mistri {
  background: #E3F2FD !important;
  border-color: #E3F2FD !important;
}

.theme-card-green:hover,
.theme-card-construction:hover,
.theme-card-raj-mistri:hover {
  background: #E3F2FD !important;
  border-color: #4DA8FF !important;
  box-shadow: 0 16px 36px rgba(25, 118, 210, 0.14), 0 4px 12px rgba(15, 23, 42, 0.04) !important;
}

.theme-card-green .cat-icon-box,
.theme-card-construction .cat-icon-box,
.theme-card-raj-mistri .cat-icon-box,
.theme-card-green .cat-icon-circle {
  background: #E3F2FD !important;
  color: #1976D2 !important;
}

.theme-card-green .cat-price-badge,
.theme-card-construction .cat-price-badge,
.theme-card-raj-mistri .cat-price-badge {
  background: #E3F2FD !important;
  color: #1976D2 !important;
  border-color: #E3F2FD !important;
}

/* 2. Indigo / Mason Helper / Flooring & Wall */
.theme-card-indigo,
.theme-card-flooring-wall-work,
.theme-card-mason-helper {
  background: #f5f7ff !important;
  border-color: #c7d2fe !important;
}

.theme-card-indigo:hover,
.theme-card-flooring-wall-work:hover,
.theme-card-mason-helper:hover {
  background: #edf1fe !important;
  border-color: #a5b4fc !important;
  box-shadow: 0 16px 36px rgba(67, 56, 202, 0.14), 0 4px 12px rgba(15, 23, 42, 0.04) !important;
}

.theme-card-indigo .cat-icon-box,
.theme-card-flooring-wall-work .cat-icon-box,
.theme-card-mason-helper .cat-icon-box,
.theme-card-indigo .cat-icon-circle {
  background: #e0e7ff !important;
  color: #4338ca !important;
}

.theme-card-indigo .cat-price-badge,
.theme-card-flooring-wall-work .cat-price-badge,
.theme-card-mason-helper .cat-price-badge {
  background: #e0e7ff !important;
  color: #4338ca !important;
  border-color: #c7d2fe !important;
}

/* 3. Blue / Electrician */
.theme-card-blue,
.theme-card-electrical,
.theme-card-electrician {
  background: #f0f7ff !important;
  border-color: #E3F2FD !important;
}

.theme-card-blue:hover,
.theme-card-electrical:hover,
.theme-card-electrician:hover {
  background: #e3f0fe !important;
  border-color: #4DA8FF !important;
  box-shadow: 0 16px 36px rgba(29, 78, 216, 0.14), 0 4px 12px rgba(15, 23, 42, 0.04) !important;
}

.theme-card-blue .cat-icon-box,
.theme-card-electrical .cat-icon-box,
.theme-card-electrician .cat-icon-box,
.theme-card-blue .cat-icon-circle {
  background: #E3F2FD !important;
  color: #1976D2 !important;
}

.theme-card-blue .cat-price-badge,
.theme-card-electrical .cat-price-badge,
.theme-card-electrician .cat-price-badge {
  background: #E3F2FD !important;
  color: #1976D2 !important;
  border-color: #E3F2FD !important;
}

/* 4. Cyan / Master Plumber / Plumbing & Water */
.theme-card-cyan,
.theme-card-plumbing-water,
.theme-card-plumber {
  background: #f0fdff !important;
  border-color: #a5f3fc !important;
}

.theme-card-cyan:hover,
.theme-card-plumbing-water:hover,
.theme-card-plumber:hover {
  background: #e0f9fe !important;
  border-color: #67e8f9 !important;
  box-shadow: 0 16px 36px rgba(14, 116, 144, 0.14), 0 4px 12px rgba(15, 23, 42, 0.04) !important;
}

.theme-card-cyan .cat-icon-box,
.theme-card-plumbing-water .cat-icon-box,
.theme-card-plumber .cat-icon-box,
.theme-card-cyan .cat-icon-circle {
  background: #cffafe !important;
  color: #0e7490 !important;
}

.theme-card-cyan .cat-price-badge,
.theme-card-plumbing-water .cat-price-badge,
.theme-card-plumber .cat-price-badge {
  background: #cffafe !important;
  color: #0e7490 !important;
  border-color: #a5f3fc !important;
}

/* 5. Rose / Skilled Carpenter / Furniture */
.theme-card-rose,
.theme-card-carpenter-furniture,
.theme-card-carpenter {
  background: #fff1f5 !important;
  border-color: #fbcfe8 !important;
}

.theme-card-rose:hover,
.theme-card-carpenter-furniture:hover,
.theme-card-carpenter:hover {
  background: #ffe3ec !important;
  border-color: #f472b6 !important;
  box-shadow: 0 16px 36px rgba(190, 24, 93, 0.14), 0 4px 12px rgba(15, 23, 42, 0.04) !important;
}

.theme-card-rose .cat-icon-box,
.theme-card-carpenter-furniture .cat-icon-box,
.theme-card-carpenter .cat-icon-box,
.theme-card-rose .cat-icon-circle {
  background: #fce7f3 !important;
  color: #be185d !important;
}

.theme-card-rose .cat-price-badge,
.theme-card-carpenter-furniture .cat-price-badge,
.theme-card-carpenter .cat-price-badge {
  background: #fce7f3 !important;
  color: #be185d !important;
  border-color: #fbcfe8 !important;
}

/* 6. Teal / Home Painter / Painting & Finishing */
.theme-card-teal,
.theme-card-painting-finishing,
.theme-card-painter {
  background: #f0fdfa !important;
  border-color: #99f6e4 !important;
}

.theme-card-teal:hover,
.theme-card-painting-finishing:hover,
.theme-card-painter:hover {
  background: #dff9f4 !important;
  border-color: #5eead4 !important;
  box-shadow: 0 16px 36px rgba(15, 118, 110, 0.14), 0 4px 12px rgba(15, 23, 42, 0.04) !important;
}

.theme-card-teal .cat-icon-box,
.theme-card-painting-finishing .cat-icon-box,
.theme-card-painter .cat-icon-box,
.theme-card-teal .cat-icon-circle {
  background: #ccfbf1 !important;
  color: #0f766e !important;
}

.theme-card-teal .cat-price-badge,
.theme-card-painting-finishing .cat-price-badge,
.theme-card-painter .cat-price-badge {
  background: #ccfbf1 !important;
  color: #0f766e !important;
  border-color: #99f6e4 !important;
}

/* 7. Purple / AC & Appliances */
.theme-card-purple,
.theme-card-violet,
.theme-card-ac-appliances,
.theme-card-appliance-repair {
  background: #faf5ff !important;
  border-color: #ddd6fe !important;
}

.theme-card-purple:hover,
.theme-card-violet:hover,
.theme-card-ac-appliances:hover,
.theme-card-appliance-repair:hover {
  background: #f2e6fe !important;
  border-color: #c4b5fd !important;
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.14), 0 4px 12px rgba(15, 23, 42, 0.04) !important;
}

.theme-card-purple .cat-icon-box,
.theme-card-violet .cat-icon-box,
.theme-card-ac-appliances .cat-icon-box,
.theme-card-appliance-repair .cat-icon-box,
.theme-card-purple .cat-icon-circle,
.theme-card-violet .cat-icon-circle {
  background: #ede9fe !important;
  color: #7c3aed !important;
}

.theme-card-purple .cat-price-badge,
.theme-card-violet .cat-price-badge,
.theme-card-ac-appliances .cat-price-badge,
.theme-card-appliance-repair .cat-price-badge {
  background: #ede9fe !important;
  color: #7c3aed !important;
  border-color: #ddd6fe !important;
}

/* 8. Sky Blue / Deep Cleaning / Home Services */
.theme-card-emerald,
.theme-card-home-services,
.theme-card-cleaning {
  background: #E3F2FD !important;
  border-color: #E3F2FD !important;
}

.theme-card-emerald:hover,
.theme-card-home-services:hover,
.theme-card-cleaning:hover {
  background: #E3F2FD !important;
  border-color: #4DA8FF !important;
  box-shadow: 0 16px 36px rgba(25, 118, 210, 0.14), 0 4px 12px rgba(15, 23, 42, 0.04) !important;
}

.theme-card-emerald .cat-icon-box,
.theme-card-home-services .cat-icon-box,
.theme-card-cleaning .cat-icon-box,
.theme-card-emerald .cat-icon-circle {
  background: #E3F2FD !important;
  color: #1976D2 !important;
}

.theme-card-emerald .cat-price-badge,
.theme-card-home-services .cat-price-badge,
.theme-card-cleaning .cat-price-badge {
  background: #E3F2FD !important;
  color: #1976D2 !important;
  border-color: #E3F2FD !important;
}

/* 9. Orange / Loading / Other Services */
.theme-card-orange,
.theme-card-other-services,
.theme-card-loading {
  background: #fff7ed !important;
  border-color: #fed7aa !important;
}

.theme-card-orange:hover,
.theme-card-other-services:hover,
.theme-card-loading:hover {
  background: #feeeda !important;
  border-color: #fdba74 !important;
  box-shadow: 0 16px 36px rgba(194, 65, 12, 0.14), 0 4px 12px rgba(15, 23, 42, 0.04) !important;
}

.theme-card-orange .cat-icon-box,
.theme-card-other-services .cat-icon-box,
.theme-card-loading .cat-icon-box,
.theme-card-orange .cat-icon-circle {
  background: #ffedd5 !important;
  color: #c2410c !important;
}

.theme-card-orange .cat-price-badge,
.theme-card-other-services .cat-price-badge,
.theme-card-loading .cat-price-badge {
  background: #ffedd5 !important;
  color: #c2410c !important;
  border-color: #fed7aa !important;
}

/* 10. Slate / Professional Project Services */
.theme-card-slate,
.theme-card-professional-project-services {
  background: #f8fafc !important;
  border-color: #cbd5e1 !important;
}

.theme-card-slate:hover,
.theme-card-professional-project-services:hover {
  background: #eff3f8 !important;
  border-color: #94a3b8 !important;
  box-shadow: 0 16px 36px rgba(51, 65, 85, 0.14), 0 4px 12px rgba(15, 23, 42, 0.04) !important;
}

.theme-card-slate .cat-icon-box,
.theme-card-professional-project-services .cat-icon-box,
.theme-card-slate .cat-icon-circle {
  background: #e2e8f0 !important;
  color: #334155 !important;
}

.theme-card-slate .cat-price-badge,
.theme-card-professional-project-services .cat-price-badge {
  background: #e2e8f0 !important;
  color: #334155 !important;
  border-color: #cbd5e1 !important;
}

.header-link-btn.accent-pill {
  background: var(--primary-light);
  color: var(--primary-hover);
  font-weight: 700;
}

.header-link-btn.accent-pill:hover {
  background: var(--primary-light);
  color: var(--primary-hover);
}

/* --- 3. CATEGORY / QUICK NAVIGATION BAR --- */
.header-catbar {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 8px 0;
  overflow: hidden;
}

.cat-nav-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: 2px 4px;
}

.cat-nav-scroll::-webkit-scrollbar {
  display: none;
}

.cat-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 600;
  color: #475569;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.cat-nav-pill:hover {
  background: var(--primary-light);
  color: var(--primary-hover);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.cat-nav-pill.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.cat-nav-pill i {
  font-size: 0.85rem;
  color: var(--primary);
}

.cat-nav-pill.active i {
  color: #ffffff;
}

/* ===== HERO SECTION WITH CAROUSEL ===== */
.hero-premium-section {
  padding-top: 24px;
  padding-bottom: 40px;
}

.hero-slider-fluid {
  width: 100%;
  max-width: 1600px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-slider-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1200px) {
  .hero-slider-fluid {
    max-width: 1640px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 767px) {
  .hero-slider-fluid {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.hero-slider-container {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.12);
  background: #0B192C;
}

.hero-slides-wrapper {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.hero-slide-item {
  min-width: 100%;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-slide-1 {
  background-image: url('../img/electrician_service_clean.jpg');
  background-position: right center;
}

.hero-slide-2 {
  background-image: url('../img/hero_slide_2.jpg');
}

.hero-slide-3 {
  background-image: url('../img/hero_slide_3.jpg');
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 25, 44, 0.94) 0%, rgba(11, 25, 44, 0.82) 45%, rgba(15, 41, 74, 0.45) 100%);
  z-index: 1;
}

.hero-slide-inner {
  position: relative;
  z-index: 2;
  padding: 50px 60px;
  max-width: 720px;
  color: #ffffff;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 224, 102, 0.18);
  color: #FFE066;
  border: 1px solid rgba(255, 224, 102, 0.4);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-slide-title {
  font-family: var(--ff-head);
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.hero-slide-title span.accent-gold,
span.accent-gold,
h2 .accent-gold,
h3 .accent-gold {
  color: #FFE066;
  background: linear-gradient(135deg, #FFE066 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-slide-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  max-width: 580px;
}

.hero-slide-cta-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Carousel Controls */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--navy);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
}

.hero-slider-arrow:hover {
  background: #ffffff;
  color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.hero-arrow-prev {
  left: 20px;
}

.hero-arrow-next {
  right: 20px;
}

.hero-slider-dots {
  position: absolute;
  bottom: 22px;
  left: 60px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-dot.active {
  width: 28px;
  background: var(--primary);
}

/* Floating Trust Cards in Hero */
.hero-floating-badge {
  position: absolute;
  right: 40px;
  bottom: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 16px 22px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-floating-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #E3F2FD;
  color: #1976D2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ===== BENEFIT / TRUST CARDS (ROW OF 4) ===== */
.benefits-section {
  padding: 10px 0 40px;
}

.benefit-card-v3 {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.benefit-card-v3:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  border-color: var(--primary);
}

.benefit-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  background: #E3F2FD;
  color: #1976D2;
}

.benefit-card-v3:hover .benefit-icon-box {
  transform: scale(1.1);
}

.benefit-card-v3 h6 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.benefit-card-v3 p {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}

/* ===== BENEFIT CARD PASTEL COLOR THEMES ===== */
/* Card 1 — 30 Mins Delivery → rich amber */
.benefits-section .col-6:nth-child(1) .benefit-card-v3,
.benefits-section .col-lg-3:nth-child(1) .benefit-card-v3,
.benefit-card-amber {
  background: linear-gradient(145deg, #FFF8D6 0%, #FFF8D6 100%) !important;
  border: 1.5px solid #f59e0b !important;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.15) !important;
}

.benefits-section .col-6:nth-child(1) .benefit-icon-box,
.benefits-section .col-lg-3:nth-child(1) .benefit-icon-box,
.benefit-card-amber .benefit-icon-box {
  background: #fcd34d !important;
  color: #78350f !important;
  box-shadow: 0 3px 8px rgba(245, 158, 11, 0.2);
}

/* Card 2 — Best Prices → rich blue */
.benefits-section .col-6:nth-child(2) .benefit-card-v3,
.benefits-section .col-lg-3:nth-child(2) .benefit-card-v3,
.benefit-card-blue {
  background: linear-gradient(145deg, #E3F2FD 0%, #E3F2FD 100%) !important;
  border: 1.5px solid #4DA8FF !important;
  box-shadow: 0 4px 14px rgba(25, 118, 210, 0.15) !important;
}

.benefits-section .col-6:nth-child(2) .benefit-icon-box,
.benefits-section .col-lg-3:nth-child(2) .benefit-icon-box,
.benefit-card-blue .benefit-icon-box {
  background: #4DA8FF !important;
  color: #1976D2 !important;
  box-shadow: 0 3px 8px rgba(30, 64, 175, 0.2);
}

/* Card 3 — 100% Genuine → rich purple */
.benefits-section .col-6:nth-child(3) .benefit-card-v3,
.benefits-section .col-lg-3:nth-child(3) .benefit-card-v3,
.benefit-card-purple {
  background: linear-gradient(145deg, #ede9fe 0%, #ddd6fe 100%) !important;
  border: 1.5px solid #8b5cf6 !important;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.15) !important;
}

.benefits-section .col-6:nth-child(3) .benefit-icon-box,
.benefits-section .col-lg-3:nth-child(3) .benefit-icon-box,
.benefit-card-purple .benefit-icon-box {
  background: #c4b5fd !important;
  color: #4c1d95 !important;
  box-shadow: 0 3px 8px rgba(109, 40, 217, 0.2);
}

/* Card 4 — Safe Packaging → deep blue */
.benefits-section .col-6:nth-child(4) .benefit-card-v3,
.benefits-section .col-lg-3:nth-child(4) .benefit-card-v3,
.benefit-card-green {
  background: linear-gradient(145deg, #E3F2FD 0%, #E3F2FD 100%) !important;
  border: 1.5px solid #1976D2 !important;
  box-shadow: 0 4px 14px rgba(25, 118, 210, 0.15) !important;
}

.benefits-section .col-6:nth-child(4) .benefit-icon-box,
.benefits-section .col-lg-3:nth-child(4) .benefit-icon-box,
.benefit-card-green .benefit-icon-box {
  background: #4DA8FF !important;
  color: #1976D2 !important;
  box-shadow: 0 3px 8px rgba(25, 118, 210, 0.2);
}

/* ===== TESTIMONIAL / REVIEW CARDS ===== */
.testi-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 24px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
}

.testi-card .quote {
  font-size: 1.6rem;
  opacity: 0.85;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* Testimonial distinct pastel themes */
.testi-card-amber {
  background: linear-gradient(145deg, #FFF8D6 0%, #FFF8D6 100%) !important;
  border: 1.5px solid #FFE066 !important;
  border-left: 5px solid #d97706 !important;
}

.testi-card-amber .quote {
  color: #b45309;
}

.testi-card-green {
  background: linear-gradient(145deg, #E3F2FD 0%, #E3F2FD 100%) !important;
  border: 1.5px solid #4DA8FF !important;
  border-left: 5px solid #1976D2 !important;
}

.testi-card-green .quote {
  color: #1976D2;
}

.testi-card-blue {
  background: linear-gradient(145deg, #E3F2FD 0%, #E3F2FD 100%) !important;
  border: 1.5px solid #4DA8FF !important;
  border-left: 5px solid #1976D2 !important;
}

.testi-card-blue .quote {
  color: #1976D2;
}

.testi-card-purple {
  background: linear-gradient(145deg, #ede9fe 0%, #ddd6fe 100%) !important;
  border: 1.5px solid #c4b5fd !important;
  border-left: 5px solid #7c3aed !important;
}

.testi-card-purple .quote {
  color: #6d28d9;
}



/* ===== PROMOTIONAL BANNERS SECTION ===== */
.promo-banner-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.promo-banner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.2);
}

.promo-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  z-index: 1;
}

.promo-banner-card:hover .promo-banner-bg {
  transform: scale(1.08);
}

.promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 25, 44, 0.2) 0%, rgba(11, 25, 44, 0.92) 100%);
  z-index: 2;
}

.promo-banner-content {
  position: relative;
  z-index: 3;
}

.promo-tag {
  display: inline-block;
  background: #FFE066;
  color: #0B192C;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.promo-banner-title {
  font-family: var(--ff-head);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 6px;
}

.promo-banner-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  line-height: 1.45;
}

/* ===== POPULAR / FEATURED SERVICES CAROUSEL ===== */
.popular-services-container {
  position: relative;
}

.popular-services-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: 10px 4px 20px;
}

.popular-services-scroll::-webkit-scrollbar {
  display: none;
}

.service-h-card {
  flex: 0 0 310px;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.service-h-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 14px 32px rgba(25, 118, 210, 0.14);
}

.service-h-thumb {
  height: 160px;
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
}

.service-h-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-h-card:hover .service-h-thumb img {
  transform: scale(1.08);
}

.service-h-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 25, 44, 0.88);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.service-h-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-h-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.35;
}

.service-h-meta {
  font-size: 0.78rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.service-h-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.service-h-price {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
}

.service-h-price small {
  font-size: 0.72rem;
  font-weight: 500;
  color: #64748b;
}

/* ===== POPULAR NEAR YOU — SOFT PASTEL CARD COLOR THEMES ===== */
/* Card 1: Amber / Yellow (Electrical) */
.service-h-card-amber,
.popular-services-scroll .service-h-card:nth-child(1) {
  background: linear-gradient(165deg, #ffffff 0%, #fffbeb 50%, #FFF8D6 100%) !important;
  border: 1.5px solid #FFF8D6 !important;
}

.service-h-card-amber:hover,
.popular-services-scroll .service-h-card:nth-child(1):hover {
  border-color: #f59e0b !important;
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.18) !important;
}

.service-h-card-amber .service-h-category-tag,
.popular-services-scroll .service-h-card:nth-child(1) .service-h-category-tag {
  background: rgba(245, 158, 11, 0.9) !important;
  color: #ffffff;
}

/* Card 2: Soft Blue (Plumbing) */
.service-h-card-blue,
.popular-services-scroll .service-h-card:nth-child(2) {
  background: linear-gradient(165deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%) !important;
  border: 1.5px solid #bae6fd !important;
}

.service-h-card-blue:hover,
.popular-services-scroll .service-h-card:nth-child(2):hover {
  border-color: #0284c7 !important;
  box-shadow: 0 14px 32px rgba(2, 132, 199, 0.18) !important;
}

.service-h-card-blue .service-h-category-tag,
.popular-services-scroll .service-h-card:nth-child(2) .service-h-category-tag {
  background: rgba(3, 105, 161, 0.9) !important;
  color: #ffffff;
}

/* Card 3: Soft Blue (Cleaning) */
.service-h-card-green,
.popular-services-scroll .service-h-card:nth-child(3) {
  background: linear-gradient(165deg, #ffffff 0%, #E3F2FD 50%, #E3F2FD 100%) !important;
  border: 1.5px solid #E3F2FD !important;
}

.service-h-card-green:hover,
.popular-services-scroll .service-h-card:nth-child(3):hover {
  border-color: #1976D2 !important;
  box-shadow: 0 14px 32px rgba(25, 118, 210, 0.18) !important;
}

.service-h-card-green .service-h-category-tag,
.popular-services-scroll .service-h-card:nth-child(3) .service-h-category-tag {
  background: rgba(25, 118, 210, 0.9) !important;
  color: #ffffff;
}

/* Card 4: Soft Sky / Cyan (Appliance) */
.service-h-card-sky,
.popular-services-scroll .service-h-card:nth-child(4) {
  background: linear-gradient(165deg, #ffffff 0%, #E3F2FD 50%, #E3F2FD 100%) !important;
  border: 1.5px solid #E3F2FD !important;
}

.service-h-card-sky:hover,
.popular-services-scroll .service-h-card:nth-child(4):hover {
  border-color: #1976D2 !important;
  box-shadow: 0 14px 32px rgba(25, 118, 210, 0.18) !important;
}

.service-h-card-sky .service-h-category-tag,
.popular-services-scroll .service-h-card:nth-child(4) .service-h-category-tag {
  background: rgba(29, 78, 216, 0.9) !important;
  color: #ffffff;
}

/* Card 5: Soft Peach / Orange (Masonry) */
.service-h-card-orange,
.popular-services-scroll .service-h-card:nth-child(5) {
  background: linear-gradient(165deg, #ffffff 0%, #fff7ed 50%, #ffedd5 100%) !important;
  border: 1.5px solid #fed7aa !important;
}

.service-h-card-orange:hover,
.popular-services-scroll .service-h-card:nth-child(5):hover {
  border-color: #ea580c !important;
  box-shadow: 0 14px 32px rgba(234, 88, 12, 0.18) !important;
}

.service-h-card-orange .service-h-category-tag,
.popular-services-scroll .service-h-card:nth-child(5) .service-h-category-tag {
  background: rgba(194, 65, 12, 0.9) !important;
  color: #ffffff;
}

/* Card 6: Soft Lavender / Purple (Carpentry) */
.service-h-card-purple,
.popular-services-scroll .service-h-card:nth-child(6) {
  background: linear-gradient(165deg, #ffffff 0%, #faf5ff 50%, #ede9fe 100%) !important;
  border: 1.5px solid #ddd6fe !important;
}

.service-h-card-purple:hover,
.popular-services-scroll .service-h-card:nth-child(6):hover {
  border-color: #7c3aed !important;
  box-shadow: 0 14px 32px rgba(124, 58, 237, 0.18) !important;
}

.service-h-card-purple .service-h-category-tag,
.popular-services-scroll .service-h-card:nth-child(6) .service-h-category-tag {
  background: rgba(109, 40, 217, 0.9) !important;
  color: #ffffff;
}

/* ===== PROMOTIONAL CTA / OFFER STRIP ===== */
.offer-promo-strip {
  background: linear-gradient(135deg, #0B192C 0%, #0F294A 50%, #1976D2 100%);
  border-radius: 24px;
  padding: 36px 44px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(77, 168, 255, 0.35);
  box-shadow: 0 14px 40px rgba(11, 25, 44, 0.28);
}

.offer-promo-strip::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 224, 102, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.coupon-copy-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px dashed #FFE066;
  border-radius: 12px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.coupon-copy-badge:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #FBBF24;
}

.coupon-copy-badge code {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFE066;
  letter-spacing: 0.08em;
}

/* ===== TRUST & PAYMENT GUARANTEE STRIP ===== */
.trust-payment-bar {
  background: linear-gradient(135deg, #E3F2FD 0%, #bae6fd 50%, #ddd6fe 100%);
  border: 1.5px solid #4DA8FF;
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 8px 30px rgba(15, 83, 42, 0.12);
}

.trust-info-cell {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-info-cell .cell-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #4DA8FF;
  border: 1px solid #4DA8FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #1976D2;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(25, 118, 210, 0.2);
}

/* Richer pastel icon colors per trust cell */
.trust-payment-bar .col-6:nth-child(1) .cell-icon,
.trust-payment-bar .col-lg-3:nth-child(1) .cell-icon {
  background: #4DA8FF;
  border-color: #4DA8FF;
  color: #1976D2;
}

.trust-payment-bar .col-6:nth-child(2) .cell-icon,
.trust-payment-bar .col-lg-3:nth-child(2) .cell-icon {
  background: #4DA8FF;
  border-color: #4DA8FF;
  color: #1976D2;
}

.trust-payment-bar .col-6:nth-child(3) .cell-icon,
.trust-payment-bar .col-lg-3:nth-child(3) .cell-icon {
  background: #fcd34d;
  border-color: #fbbf24;
  color: #78350f;
}

.trust-payment-bar .col-6:nth-child(4) .cell-icon,
.trust-payment-bar .col-lg-3:nth-child(4) .cell-icon {
  background: #c4b5fd;
  border-color: #a78bfa;
  color: #4c1d95;
}

/* ===== TRUST PAYMENT FOOTER & BADGES ===== */
.trust-payment-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-payment-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #0f172a;
  font-weight: 700;
}

.trust-payment-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pay-badge {
  background: #ffffff;
  color: #0f172a;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
}

/* ===== APP DOWNLOAD & CALLBACK SECTION ===== */
.app-card-block {
  background: linear-gradient(135deg, #0B192C 0%, #1976D2 100%);
  border-radius: 24px;
  padding: 40px;
  color: #ffffff;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(11, 25, 44, 0.22);
}

.app-badge-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 10px 16px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.app-badge-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

.callback-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 38px 34px;
  height: 100%;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
}

/* ========================================================
   COMPREHENSIVE MULTI-DEVICE RESPONSIVE ENGINE
   Breakpoints: 320px | 375px | 480px | 576px | 768px | 992px | 1200px | 1440px+
   ======================================================== */

/* --- Universal Overflow & Box Sizing Prevention --- */
html,
body {
  max-width: 100% !important;
  overflow-x: clip !important;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Touch Target Minimum (44px x 44px) */
.nav-icon-btn,
.navbar-toggler,
.btn-ds,
.btn,
.drawer-close {
  min-height: 44px;
  min-width: 44px;
}

/* --- Breakpoint: Tiny Mobile (320px to 359px) --- */
@media (max-width: 359px) {

  /* Container Padding */
  .container-xl,
  .container-ds {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  /* Header adjustments */
  .header-main {
    padding: 6px 0;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
    border-radius: 8px;
  }

  .brand-text .t1 {
    font-size: 1.05rem;
    letter-spacing: -0.01em;
  }

  /* Hero adjustments */
  .hero-slider-container {
    border-radius: 14px;
  }

  .hero-slide-item {
    min-height: 420px;
  }

  .hero-slide-inner {
    padding: 18px 10px !important;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    padding: 3px 8px;
    margin-bottom: 10px;
  }

  .hero-slide-title {
    font-size: clamp(1.4rem, 5.5vw, 1.75rem) !important;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .hero-slide-desc {
    font-size: 0.78rem !important;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .search-card {
    padding: 8px !important;
    border-radius: 12px !important;
  }

  .search-field {
    width: 100% !important;
    min-width: 100% !important;
  }

  .mini-avatars img {
    width: 26px;
    height: 26px;
  }

  /* Benefit Cards on 320-359px */
  .benefit-card-v3 {
    padding: 10px 8px;
    border-radius: 12px;
    gap: 8px;
  }

  .benefit-icon-box {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    border-radius: 8px;
  }

  .benefit-card-v3 h6 {
    font-size: 0.8rem;
  }

  .benefit-card-v3 p {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  /* Category Cards on 320-359px */
  .category-card-premium {
    padding: 10px 6px;
    border-radius: 12px;
  }

  .cat-icon-circle {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
    border-radius: 10px;
    margin-bottom: 8px;
  }

  .category-card-premium h6 {
    font-size: 0.8rem;
  }

  .category-card-premium .cat-meta {
    font-size: 0.65rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .category-card-premium .cat-price-badge {
    font-size: 0.6rem;
    padding: 2px 5px;
  }

  /* Popular Services on 320-359px */
  .service-h-card {
    flex: 0 0 215px !important;
    border-radius: 14px;
  }

  .service-h-thumb {
    height: 115px;
  }

  .service-h-body {
    padding: 10px 8px;
  }

  .service-h-title {
    font-size: 0.84rem;
  }

  .service-h-price {
    font-size: 0.95rem;
  }

  /* Promo Banners on 320-359px */
  .promo-banner-card {
    min-height: 200px;
    padding: 16px 12px;
    border-radius: 14px;
  }

  .promo-banner-title {
    font-size: 1.05rem;
  }

  /* CTA Strip on 320-359px */
  .offer-promo-strip {
    padding: 18px 12px !important;
    border-radius: 14px;
  }

  .offer-promo-strip h2 {
    font-size: 1.3rem !important;
  }

  .coupon-copy-badge {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  /* Trust Bar on 320-359px */
  .trust-payment-bar {
    padding: 14px 10px;
    border-radius: 14px;
  }

  .trust-info-cell {
    gap: 8px;
  }

  .trust-info-cell .cell-icon {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }

  /* App Card on 320-359px */
  .app-card-block {
    padding: 18px 12px;
    border-radius: 14px;
  }

  .callback-form-card {
    padding: 18px 12px;
    border-radius: 14px;
  }
}

/* --- Breakpoint: Small Mobile (360px to 480px) --- */
@media (min-width: 360px) and (max-width: 480px) {

  /* Container Padding */
  .container-xl,
  .container-ds {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  /* Header adjustments */
  .header-main {
    padding: 8px 0;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    border-radius: 10px;
  }

  .brand-text .t1 {
    font-size: 1.15rem;
  }

  /* Hero adjustments */
  .hero-slider-container {
    border-radius: 18px;
  }

  .hero-slide-item {
    min-height: 440px;
  }

  .hero-slide-inner {
    padding: 24px 14px !important;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
    padding: 4px 10px;
    margin-bottom: 12px;
  }

  .hero-slide-title {
    font-size: clamp(1.55rem, 6vw, 1.95rem) !important;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hero-slide-desc {
    font-size: 0.85rem !important;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .search-card {
    padding: 10px !important;
    border-radius: 14px !important;
  }

  .search-field {
    width: 100% !important;
    min-width: 100% !important;
  }

  .mini-avatars img {
    width: 30px;
    height: 30px;
  }

  /* Benefit Cards on 360-480px */
  .benefit-card-v3 {
    padding: 14px 12px;
    border-radius: 14px;
    gap: 10px;
  }

  .benefit-icon-box {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
    border-radius: 10px;
  }

  .benefit-card-v3 h6 {
    font-size: 0.88rem;
  }

  .benefit-card-v3 p {
    font-size: 0.75rem;
  }

  /* Category Cards on 360-480px */
  .category-card-premium {
    padding: 16px 10px;
    border-radius: 16px;
  }

  .cat-icon-circle {
    width: 50px;
    height: 50px;
    font-size: 1.35rem;
    border-radius: 14px;
    margin-bottom: 10px;
  }

  .category-card-premium h6 {
    font-size: 0.88rem;
  }

  .category-card-premium .cat-meta {
    font-size: 0.72rem;
  }

  .category-card-premium .cat-price-badge {
    font-size: 0.65rem;
    padding: 2px 8px;
  }

  /* Popular Services on 360-480px */
  .service-h-card {
    flex: 0 0 250px !important;
    border-radius: 16px;
  }

  .service-h-thumb {
    height: 130px;
  }

  .service-h-body {
    padding: 14px 12px;
  }

  .service-h-title {
    font-size: 0.92rem;
  }

  .service-h-price {
    font-size: 1.05rem;
  }

  /* Promo Banners on 360-480px */
  .promo-banner-card {
    min-height: 220px;
    padding: 20px 16px;
    border-radius: 18px;
  }

  .promo-banner-title {
    font-size: 1.12rem;
  }

  /* CTA Strip on 360-480px */
  .offer-promo-strip {
    padding: 24px 16px !important;
    border-radius: 18px;
  }

  .offer-promo-strip h2 {
    font-size: 1.45rem !important;
  }

  .coupon-copy-badge {
    width: 100%;
    justify-content: center;
  }

  /* Trust Bar on 360-480px */
  .trust-payment-bar {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .trust-info-cell {
    gap: 10px;
  }

  .trust-info-cell .cell-icon {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }

  /* App Card on 360-480px */
  .app-card-block {
    padding: 24px 16px;
    border-radius: 18px;
  }

  .callback-form-card {
    padding: 24px 16px;
    border-radius: 18px;
  }
}

/* --- Breakpoint: Large Mobile & Phablet (481px to 575px) --- */
@media (min-width: 481px) and (max-width: 575px) {

  .container-xl,
  .container-ds {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .service-h-card {
    flex: 0 0 270px !important;
  }

  .category-card-premium {
    padding: 18px 12px;
  }
}

/* --- Breakpoint: Landscape Mobile / Small Tablet (576px to 767px) --- */
@media (min-width: 576px) and (max-width: 767px) {

  .container-xl,
  .container-ds {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .service-h-card {
    flex: 0 0 280px !important;
  }
}

/* --- Breakpoint: All Mobile & Tablet (<992px) --- */
@media (max-width: 991px) {
  .header-topbar {
    display: none;
  }

  .header-search-form {
    display: none;
  }

  .header-nav-actions .header-link-btn {
    display: none;
  }

  .hero-slide-item {
    min-height: 420px;
  }

  .hero-slide-inner {
    padding: 36px 20px;
  }

  .hero-slider-arrow {
    display: none;
  }

  .hero-slider-dots {
    left: 20px;
    bottom: 16px;
  }

  .hero-floating-badge {
    display: none;
  }

  .offer-promo-strip {
    padding: 30px 24px;
    text-align: center;
  }

  .offer-promo-strip .col-lg-4 {
    text-align: center !important;
    margin-top: 14px;
  }

  .offer-promo-strip .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Footer touch area enhancement */
  .footer-la {
    padding-top: 48px;
  }

  .footer-la ul li a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    width: 100%;
  }

  .footer-bottom {
    margin-top: 32px;
    padding: 20px 0;
    text-align: center;
    flex-direction: column;
    gap: 14px;
  }

  .footer-left-meta {
    align-items: center;
    text-align: center;
  }

  .footer-dev-credit {
    justify-content: center;
    width: 100%;
  }

  .footer-payment-wrap {
    justify-content: center;
    width: 100%;
    gap: 6px;
  }

  .footer-we-accept-text {
    width: 100%;
    justify-content: center;
    font-size: 0.85rem;
    margin-bottom: 2px;
  }

  .footer-pay-chip {
    padding: 5px 8px;
    font-size: 0.72rem;
  }
}

/* --- Breakpoint: Tablet Portrait (768px to 991px) --- */
@media (min-width: 768px) and (max-width: 991px) {

  .container-xl,
  .container-ds {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .service-h-card {
    flex: 0 0 285px !important;
  }
}

/* --- Breakpoint: Tablet Landscape & Small Laptop (992px to 1199px) --- */
@media (min-width: 992px) and (max-width: 1199px) {
  .header-search-form {
    max-width: 360px;
  }

  .header-link-btn {
    padding: 6px 8px;
    font-size: 0.82rem;
  }

  .hero-slide-inner {
    padding: 44px 36px;
  }

  .hero-slide-title {
    font-size: 2.35rem;
  }

  .service-h-card {
    flex: 0 0 295px !important;
  }
}

/* --- Breakpoint: Large Desktop (1200px to 1599px) --- */
@media (min-width: 1200px) {
  .hero-slide-inner {
    padding: 60px 64px;
  }

  .service-h-card {
    flex: 0 0 310px !important;
  }
}

/* --- Breakpoint: Ultra-Wide Screens (1600px+) --- */
@media (min-width: 1600px) {

  .container-xl,
  .container-ds {
    max-width: 1360px !important;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== HERO MOBILE CLEAN-UP ===== */
@media (max-width: 767px) {

  /* Hide cluttered overlay content on mobile */
  .hero-eyebrow,
  .hero-slide-desc,
  .hero-floating-badge,
  .mini-avatars,
  .hero-slide-inner>.d-flex.align-items-center.gap-3,
  .hero-slide-inner>.search-card {
    display: none !important;
  }

  /* Compact slide inner padding */
  .hero-slide-inner {
    padding: 28px 20px 22px;
    max-width: 100%;
  }

  /* Slightly smaller title on mobile */
  .hero-slide-title {
    font-size: clamp(1.45rem, 6vw, 2rem);
    margin-bottom: 16px;
  }

  /* Reduce slide min-height so image shows nicely */
  .hero-slide-item {
    min-height: 320px;
    align-items: flex-end;
  }

  /* Darken the overlay a bit for readability on mobile */
  .hero-slide-overlay {
    background: linear-gradient(180deg, rgba(11, 25, 44, 0.45) 0%, rgba(11, 25, 44, 0.90) 100%);
  }

  /* Only one CTA button — hide secondary outline button on mobile */
  .hero-slide-cta-wrap .btn-outline-light {
    display: none !important;
  }

  .hero-slide-cta-wrap {
    gap: 10px;
  }

  .hero-slide-cta-wrap .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 12px 20px;
  }

  /* Shrink slider arrows on mobile */
  .hero-slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .hero-arrow-prev {
    left: 10px;
  }

  .hero-arrow-next {
    right: 10px;
  }

  /* Dots position on mobile */
  .hero-slider-dots {
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
  }

  /* ===== APP DOWNLOAD SECTION — MOBILE COMPACT ===== */
  #download-app {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .app-card-block {
    padding: 22px 18px !important;
    border-radius: 16px !important;
  }

  .app-card-block h3 {
    font-size: 1.5rem !important;
  }

  .app-badge-btn {
    padding: 10px 14px;
    font-size: 0.82rem;
    border-radius: 10px;
  }

  /* Hide QR scan row on mobile — not useful on phone */
  .app-card-block .border-top {
    display: none !important;
  }

  .callback-form-card {
    padding: 22px 18px !important;
    border-radius: 16px !important;
  }

  /* ===== LEAVE A REVIEW SECTION — MOBILE COMPACT ===== */
  section.py-4.py-lg-5>.container>.p-4 {
    padding: 18px 14px !important;
    border-radius: 16px !important;
  }

  /* Hide left info/trust column on mobile — show only the form */
  section.py-4.py-lg-5 .col-lg-5 {
    display: none !important;
  }

  /* Review form card padding tighter */
  section.py-4.py-lg-5 .col-lg-7>div {
    padding: 16px 12px !important;
    border-radius: 12px !important;
  }

  /* Reduce section outer padding on mobile */
  section.py-4 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  /* ===== OFFER PROMO STRIP — MOBILE COMPACT ===== */
  .offer-promo-strip {
    padding: 24px 18px !important;
    border-radius: 18px !important;
  }

  .offer-promo-strip h2 {
    font-size: 1.5rem !important;
  }

  .offer-promo-strip p {
    font-size: 0.85rem !important;
  }

  .coupon-copy-badge {
    padding: 7px 12px;
    font-size: 0.85rem;
  }

  .coupon-copy-badge code {
    font-size: 0.95rem;
  }

  /* ===== TRUST PAYMENT BAR — MOBILE COMPACT ===== */
  .trust-payment-bar {
    padding: 18px 14px !important;
    border-radius: 16px !important;
  }

  .trust-info-cell {
    gap: 10px;
  }

  .trust-info-cell .cell-icon {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
    border-radius: 10px;
  }

  .trust-info-cell .fw-bold {
    font-size: 0.82rem;
  }

  /* Payment badges — 2 equal-width columns on mobile, no text overflow */
  .trust-payment-footer {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .trust-payment-label {
    font-size: 0.78rem !important;
  }

  .trust-payment-badges {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .trust-pay-badge {
    width: 100% !important;
    padding: 8px 4px !important;
    font-size: 0.74rem !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
  }
}

/* --- Section Vertical Rhythm clamp --- */
section {
  padding: clamp(36px, 5vw, 68px) 0;
}

.hero-premium-section {
  padding-top: clamp(16px, 3vw, 28px);
  padding-bottom: clamp(24px, 4vw, 40px);
}

/* ===== HOME PAGE CONTAINER (DESKTOP/LAPTOP INSET SPACING) ===== */
.home-page-container {
  width: 100%;
}

@media (min-width: 992px) {
  .home-page-container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-page-container>section {
    border-radius: 22px;
    overflow: hidden;
  }
}

@media (min-width: 1200px) {
  .home-page-container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1580px;
  }
}

@media (min-width: 1400px) {
  .home-page-container {
    padding-left: 22px;
    padding-right: 22px;
    max-width: 1660px;
  }
}

/* ===== TEAM SECTION — MEET OUR TEAM ===== */
.team-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.07);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
  border-color: var(--amber-dark);
}

/* Image wrapper with overlay */
.team-img-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: #f1f5f9;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.team-card:hover .team-img {
  transform: scale(1.06);
}

/* Overlay on hover */
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 20, 40, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-overlay-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  transform: translateY(12px);
  transition: transform 0.35s ease;
}

.team-card:hover .team-overlay-icon {
  transform: translateY(0);
}

/* Info section */
.team-info {
  padding: 22px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-name {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.team-role {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* Role badge colors */
.ceo-role {
  background: linear-gradient(135deg, #FFF8D6, #FFF8D6);
  color: #92400e;
  border: 1.5px solid #fbbf24;
}

.marketing-role {
  background: linear-gradient(135deg, #E3F2FD, #E3F2FD);
  color: #1e40af;
  border: 1.5px solid #4DA8FF;
}

.quality-role {
  background: linear-gradient(135deg, #E3F2FD, #E3F2FD);
  color: #1976D2;
  border: 1.5px solid #4DA8FF;
}

.operations-role {
  background: linear-gradient(135deg, #FFF8D6, #FFF8D6);
  color: #b45309;
  border: 1.5px solid #fbbf24;
}

.finance-role {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  color: #5b21b6;
  border: 1.5px solid #a78bfa;
}

.team-desc {
  font-size: 0.83rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Responsive team cards */
@media (max-width: 575px) {
  .team-img-wrap {
    height: 240px;
  }

  .team-info {
    padding: 16px 16px 20px;
  }

  .team-name {
    font-size: 1rem;
  }
}



/* ============================================================
   BRAND FINAL OVERRIDES — Yellow + Blue Palette
   #FFE066 | #4DA8FF | #1976D2 | #E3F2FD | #FFF8D6
   ============================================================ */

/* Footer heading icons */
.footer-la h6 i {
  color: #FFE066 !important;
}

/* Footer links */
.footer-la ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-la ul li {
  margin-bottom: 6px;
}

.footer-la ul li a {
  color: rgba(255, 255, 255, 0.70) !important;
  font-size: 0.87rem;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 3px 0;
  transition: all 0.2s;
}

.footer-la ul li a i {
  color: #FFE066 !important;
}

.footer-la ul li a:hover {
  color: #FFE066 !important;
  padding-left: 5px;
}

/* Footer contact icons */
.footer-contact-icon {
  color: #FFE066 !important;
}

.footer-contact-icon i {
  color: #FFE066 !important;
}

/* Footer h6 titles */
.footer-la h6 {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Footer trust badges */
.footer-trust-badge i {
  color: #FFE066 !important;
}

.footer-trust-badge {
  background: rgba(255, 224, 102, 0.12);
  border: 1px solid rgba(255, 224, 102, 0.3);
  color: rgba(255, 255, 255, 0.85);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* Footer "We Accept" section */
.footer-we-accept-text i {
  color: #FFE066 !important;
}

/* Footer social circles */
.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 224, 102, 0.15);
  border: 1.5px solid rgba(255, 224, 102, 0.35);
  color: #FFE066;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.social-circle:hover {
  background: #FFE066;
  color: #0B192C;
  border-color: #FFE066;
  transform: scale(1.1);
}

/* â”€â”€ Buttons â”€â”€ */
/* Primary CTA button â€” Yellow */
.btn-amber,
.btn-cta,
.btn-primary-brand {
  background: linear-gradient(135deg, #FFE066 0%, #F59E0B 100%) !important;
  color: #0F172A !important;
  border: 1.5px solid #F59E0B !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(255, 224, 102, 0.4) !important;
}

.btn-amber:hover,
.btn-cta:hover,
.btn-primary-brand:hover {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%) !important;
  color: #0F172A !important;
  box-shadow: 0 8px 24px rgba(255, 224, 102, 0.55) !important;
  transform: translateY(-2px) scale(1.02);
}

/* Secondary button â€” Deep Blue */
.btn-navy,
.btn-blue,
.btn-secondary-brand {
  background: linear-gradient(135deg, #1976D2 0%, #4DA8FF 100%) !important;
  color: #ffffff !important;
  border: 1.5px solid #1976D2 !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(25, 118, 210, 0.35) !important;
}

.btn-navy:hover,
.btn-blue:hover,
.btn-secondary-brand:hover {
  background: linear-gradient(135deg, #4DA8FF 0%, #1976D2 100%) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Outline button */
.btn-outline-navy {
  background: transparent !important;
  color: #1976D2 !important;
  border: 1.5px solid #1976D2 !important;
}

.btn-outline-navy:hover {
  background: #1976D2 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* â”€â”€ Header search button â€” Yellow â”€â”€ */
.header-search-form button {
  background: linear-gradient(135deg, #FFE066 0%, #F59E0B 100%) !important;
  color: #0F172A !important;
  border: 1px solid #F59E0B !important;
  font-weight: 700 !important;
}

.header-search-form button:hover {
  background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%) !important;
  color: #0F172A !important;
}

/* â”€â”€ Nav icon buttons â”€â”€ */
.nav-icon-btn:hover {
  background: #FFE066 !important;
  color: #0B192C !important;
  border-color: #FFE066 !important;
}

/* â”€â”€ Service Cards â€” Sky Blue backgrounds â”€â”€ */
.svc-card:hover {
  border-color: #1976D2 !important;
}

.svc-card .service-icon {
  color: #1976D2;
}

.svc-price {
  color: #1976D2 !important;
}

.svc-rating {
  color: #F59E0B !important;
}

/* â”€â”€ Hero/Home Section Buttons â”€â”€ */
.hero-cta-primary,
.hero-cta .btn-amber {
  background: #FFE066 !important;
  color: #0F172A !important;
  border: 2px solid #F59E0B !important;
}

.hero-cta-secondary,
.hero-cta .btn-outline {
  background: transparent !important;
  color: #FFE066 !important;
  border: 2px solid #FFE066 !important;
}

/* â”€â”€ Stats strip â”€â”€ */
.stats-strip {
  background: linear-gradient(135deg, #0B192C 0%, #0F294A 50%, #1976D2 100%) !important;
  border: 1px solid rgba(255, 224, 102, 0.2) !important;
}

.stats-strip .stat-number {
  color: #FFE066 !important;
}

.stats-strip .stat-label {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* â”€â”€ Category nav pills â”€â”€ */
.cat-nav-pill:hover,
.cat-nav-pill.active {
  background: #FFE066 !important;
  color: #0F172A !important;
  border-color: #F59E0B !important;
}

/* â”€â”€ Section eyebrow labels â”€â”€ */
.eyebrow {
  background: #FFF8D6 !important;
  color: #B45309 !important;
  border: 1px solid rgba(245, 158, 11, 0.3) !important;
}

/* â”€â”€ Stars â”€â”€ */
.stars {
  color: #F59E0B !important;
}

/* â”€â”€ Override Bootstrap text-success used for icons â”€â”€ */
.text-success {
  color: #FFE066 !important;
}

.bg-success {
  background-color: #1976D2 !important;
}

/* â”€â”€ Topbar hover links â”€â”€ */
.header-topbar a:hover {
  color: #FFE066 !important;
}

.topbar-badge {
  background: rgba(255, 224, 102, 0.15) !important;
  color: #FFE066 !important;
  border-color: rgba(255, 224, 102, 0.35) !important;
}

/* â”€â”€ Footer background fix â”€â”€ */
.footer-la {
  background: linear-gradient(160deg, #0B192C 0%, #0F294A 50%, #0B192C 100%) !important;
  border-top: 3px solid #FFE066 !important;
}

/* â”€â”€ Footer bottom bar â”€â”€ */
.footer-bottom {
  border-top: 1px solid rgba(255, 224, 102, 0.15) !important;
  margin-top: 32px;
  padding-top: 20px;
}

/* â”€â”€ Home services section background â”€â”€ */
.services-section,
#services,
.svc-section {
  background: linear-gradient(180deg, #E3F2FD 0%, #ffffff 100%) !important;
}

/* â”€â”€ How it works â”€â”€ */
.timeline-step-v2 .step-num-v2 {
  background: linear-gradient(135deg, #1976D2 0%, #4DA8FF 100%) !important;
  color: #ffffff !important;
}

.timeline-step-v2 .step-icon-v2 {
  background: #E3F2FD !important;
  color: #1976D2 !important;
}

/* â”€â”€ Green text anywhere â†’ Yellow â”€â”€ */
.text-primary-brand {
  color: #1976D2 !important;
}

.text-accent-brand {
  color: #FFE066 !important;
}

/* â”€â”€ Promo/Download app strip â”€â”€ */
.download-strip,
.app-download-section {
  background: linear-gradient(135deg, #0B192C 0%, #1976D2 100%) !important;
}

/* â”€â”€ Form focus rings â”€â”€ */
input:focus,
select:focus,
textarea:focus {
  border-color: #1976D2 !important;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.18) !important;
}

/* â”€â”€ Worker/Contractor card hover â”€â”€ */
.worker-card:hover,
.contractor-card:hover {
  border-color: #1976D2 !important;
  box-shadow: 0 8px 24px rgba(25, 118, 210, 0.15) !important;
}

/* â”€â”€ Category theme cards icon circles â€” Blue â”€â”€ */
.cat-icon-circle,
.cat-icon-box {
  background: #E3F2FD !important;
  color: #1976D2 !important;
}

/* â”€â”€ Pagination active â”€â”€ */
.page-item.active .page-link {
  background: #1976D2 !important;
  border-color: #1976D2 !important;
}

.page-link {
  color: #1976D2 !important;
}

.page-link:hover {
  background: #E3F2FD !important;
  color: #1976D2 !important;
}

/* ── Bootstrap green override → Brand Blue (#1976D2) ── */
/* bg-success → blue */
.bg-success {
  background-color: #1976D2 !important;
}
.bg-success-subtle,
.bg-success.bg-opacity-10,
.bg-success.bg-opacity-25 {
  background-color: #E3F2FD !important;
}
/* text-success → blue */
.text-success {
  color: #1976D2 !important;
}
/* border-success → blue */
.border-success {
  border-color: #1976D2 !important;
}
/* badge bg-success → blue */
.badge.bg-success {
  background-color: #1976D2 !important;
  color: #ffffff !important;
}
/* Bootstrap CSS variable overrides */
:root {
  --bs-success:        #1976D2;
  --bs-success-rgb:    25, 118, 210;
  --bs-success-bg-subtle: #E3F2FD;
  --bs-success-border-subtle: #90CAF9;
  --bs-success-text-emphasis: #1565C0;
}

/* ==========================================================================
   FLIPKART-STYLE MOBILE APP & WEB LAYOUT (< 992px)
   Matches official mobile experience: Top Pills + Location + Search + Icons + Bottom Nav
   ========================================================================== */

/* 1. Mobile Top Container with Sky-Blue Gradient */
.mobile-flipkart-header {
  background: linear-gradient(180deg, #D4E9FF 0%, #E9F4FF 55%, #FFFFFF 100%);
  padding: 10px 14px 4px 14px;
  border-bottom: 1px solid #E2E8F0;
}

/* 2. Top Square Tiles: 4 Tabs (Services, Goods, Lab Tests, Home Care) — Charo Bhuja Barabar */
.mobile-tab-switch {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-bottom: 10px;
}

.mob-tab {
  aspect-ratio: 1 / 1;        /* Square — charo bhuja barabar */
  border-radius: 12px;
  display: flex;
  flex-direction: column;     /* Icon on top, text below */
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.70rem;
  font-weight: 700;
  text-decoration: none !important;
  background: #FFFFFF;
  color: #334155;
  border: 1.5px solid #CBD5E1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 6px 2px;
  text-align: center;
  white-space: nowrap;
}

.mob-tab .mob-tab-icon {
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1px;
}

.mob-tab:hover {
  color: #0F172A;
  background: #F1F5F9;
  border-color: #94A3B8;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.09);
}

.mob-tab.mob-tab-active {
  background: #FFD200 !important;
  color: #0F172A !important;
  border-color: #EAB308 !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.35) !important;
}

@media (max-width: 375px) {
  .mob-tab {
    font-size: 0.63rem;
    gap: 3px;
    border-radius: 10px;
  }
  .mob-tab .mob-tab-icon {
    font-size: 1.05rem;
  }
}

/* 3. Location Bar */
.mobile-location-bar {
  margin-bottom: 10px;
  padding: 1px 4px;
}

.mob-loc-btn {
  background: transparent;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: #1E293B;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.mob-loc-icon {
  color: #EF4444;
  font-size: 0.95rem;
}

.mob-loc-label {
  color: #475569;
  font-weight: 500;
}

.mob-loc-city {
  color: #0D6EFD;
  font-weight: 700;
}

.mob-loc-arrow {
  color: #0D6EFD;
  font-size: 0.72rem;
}

/* 4. Mobile Search Bar */
.mobile-search-bar {
  margin-bottom: 12px;
  position: relative;
}

.mob-search-form {
  background: #FFFFFF;
  border: 1.5px solid #90CAF9;
  border-radius: 24px;
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 8px 0 14px;
  box-shadow: 0 2px 8px rgba(13, 110, 253, 0.08);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mob-search-form:focus-within {
  border-color: #0D6EFD;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.2);
}

.mob-search-icon {
  color: #0D6EFD;
  font-size: 0.95rem;
  margin-right: 8px;
  display: flex;
  align-items: center;
}

.mob-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9rem;
  color: #0F172A;
  font-family: inherit;
}

.mob-search-input::placeholder {
  color: #94A3B8;
  font-weight: 400;
}

.mob-search-btn {
  background: #0D6EFD;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.mob-search-btn:hover {
  background: #0B5ED7;
}

/* 5. Category Icons Strip (Horizontal Scroll) */
.mobile-cat-icons {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 14px;
  padding: 4px 2px 10px 2px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.mobile-cat-icons::-webkit-scrollbar {
  display: none;
}

.mob-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none !important;
  flex-shrink: 0;
  width: 72px;
  text-align: center;
  cursor: pointer;
}

.mob-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.18s;
}

.mob-cat-item:active .mob-cat-icon {
  transform: scale(0.92);
}

.mob-cat-item span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #1e293b;
  margin-top: 5px;
  line-height: 1.2;
  text-align: center;
  max-width: 72px;
  white-space: normal;
  word-break: break-word;
  overflow: visible;
}

/* 6. Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 68px;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 1045;
  box-shadow: 0 -3px 16px rgba(15, 23, 42, 0.08);
  padding-top: 5px;
  padding-bottom: max(env(safe-area-inset-bottom, 0px), 16px);
  padding-left: max(env(safe-area-inset-left, 0px), 6px);
  padding-right: max(env(safe-area-inset-right, 0px), 6px);
  box-sizing: border-box;
}

.mob-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  color: #64748B;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 0 0 0;
  transition: color 0.15s ease;
  position: relative;
}

.mob-nav-item i {
  font-size: 1.25rem;
  margin-bottom: 2px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.mob-nav-item.active {
  color: #0D6EFD !important;
  font-weight: 800 !important;
}

.mob-nav-item.active i {
  color: #0D6EFD !important;
  transform: scale(1.15);
}

.mob-cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #EF4444;
  color: #FFFFFF;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 10px;
  line-height: 1.2;
  min-width: 16px;
  text-align: center;
  border: 1.5px solid #FFFFFF;
}

@media (max-width: 991.98px) {
  /* 1. Header sits naturally at the top so NO page content is trapped/hidden beneath it */
  .site-header-wrapper {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    box-shadow: none !important;
    z-index: 100 !important;
  }

  body {
    padding-top: 0 !important;
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* 2. Side drawer and hamburger menu completely removed on mobile */
  #drawerToggle,
  .hamburger-box,
  .nav-overlay,
  .nav-drawer {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* 3. Header bar clean: only brand logo & name, no top cart/search buttons */
  .header-main {
    padding: 8px 14px !important;
    background: #FFFFFF !important;
    border-bottom: 1px solid #E2E8F0 !important;
  }
  .header-main .container-fluid {
    justify-content: center !important;
  }

  /* 4. Footer completely hidden on mobile & app */
  footer,
  .footer-la,
  .site-footer,
  .footer-section {
    display: none !important;
    visibility: hidden !important;
  }

  /* 5. Clean page spacing below header */
  .goods-hero {
    padding-top: 20px !important;
    min-height: auto !important;
  }
  .page-wrap {
    padding-top: 15px !important;
  }
  .page-header {
    padding: 24px 0 16px !important;
  }
  .hero-premium-section {
    padding-top: 12px !important;
  }
}

/* 7. Location Bottom Sheet Modal */
.mob-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(3px);
  z-index: 1055;
  display: flex;
  align-items: flex-end;
  animation: mobFadeIn 0.2s ease;
}

.mob-modal-sheet {
  background: #FFFFFF;
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  padding: 18px;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.18);
  animation: mobSlideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.mob-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #F1F5F9;
}

.btn-close-mob {
  background: #F1F5F9;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  cursor: pointer;
}

.mob-gps-btn {
  width: 100%;
  background: #EFF6FF;
  border: 1.5px solid #BFDBFE;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.mob-gps-btn:hover {
  background: #DBEAFE;
}

.mob-city-chip {
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: all 0.15s ease;
}

.mob-city-chip:hover, .mob-city-chip:active {
  background: #0D6EFD;
  color: #FFFFFF;
  border-color: #0D6EFD;
}
.mob-city-chip:hover i, .mob-city-chip:active i {
  color: #FFFFFF !important;
}

/* ==========================================================================
   GOODS MARKETPLACE RESPONSIVE PRODUCT GRID & CARDS
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
}

.products-grid > * {
  min-width: 0;
  width: 100%;
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

@media (max-width: 420px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1.5px solid #f1f5f9;
  overflow: hidden;
  transition: all 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  border-color: #1976D2;
  box-shadow: 0 10px 30px rgba(25, 118, 210, 0.12);
  transform: translateY(-3px);
}

/* ==========================================================================
   REVIEW / TESTIMONIAL FORM INPUTS (Crisp White Text & Placeholder)
   ========================================================================== */
.review-box-input {
  background: #0B192C !important;
  color: #FFFFFF !important;
  border: 1px solid #1976D2 !important;
  border-radius: 10px !important;
  padding: 8px 12px !important;
  font-size: 0.875rem !important;
}

.review-box-input::placeholder {
  color: #FFFFFF !important;
  opacity: 0.9 !important;
}

.review-box-input:focus {
  background: #0B192C !important;
  color: #FFFFFF !important;
  border-color: #60A5FA !important;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.35) !important;
}

/* ==========================================================================
   APP DOWNLOAD CARD: HIDE ON MOBILE & APP, DISPLAY ON DESKTOP WEB
   ========================================================================== */
@media (max-width: 991.98px) {
  .app-download-col,
  .app-download-card-col {
    display: none !important;
  }
}

body.is-native-app .app-download-col,
body.is-native-app .app-download-card-col,
body.is-native-app #download-app .app-card-block {
  display: none !important;
}

/* ==========================================================================
   LAB TESTS & HOME CARE HOMEPAGE SMALL CARDS
   ========================================================================== */
.lab-home-card {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
}

.lab-home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.16) !important;
}

.home-care-card {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
}

.home-care-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.22) !important;
}