/* ============================================================
   HOUSEGINI.COM — STYLESHEET v3
   Design: Clean White, Google-Inspired
   Font:   Roboto (Google Fonts)
   Goal:   Maximum call conversions
============================================================ */

/* ============================================================
   TOKENS
============================================================ */
:root {
  /* Brand Blues — Google-inspired */
  --blue-700:   #1a56db;
  --blue-600:   #1d6ae0;
  --blue-500:   #3b82f6;
  --blue-100:   #dbeafe;
  --blue-50:    #eff6ff;

  /* Neutrals */
  --gray-900:   #111827;
  --gray-800:   #1f2937;
  --gray-700:   #374151;
  --gray-600:   #4b5563;
  --gray-500:   #6b7280;
  --gray-400:   #9ca3af;
  --gray-200:   #e5e7eb;
  --gray-100:   #f3f4f6;
  --gray-50:    #f9fafb;
  --white:      #ffffff;

  /* Accent */
  --green:      #16a34a;
  --green-lt:   #dcfce7;
  --red:        #dc2626;
  --amber:      #d97706;

  /* Service colours */
  --plumb:      #1d6ae0;
  --plumb-lt:   #dbeafe;
  --roof:       #7c3aed;
  --roof-lt:    #ede9fe;
  --pest:       #16a34a;
  --pest-lt:    #dcfce7;
  --animal:     #d97706;
  --animal-lt:  #fef3c7;

  /* Spacing & Shape */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Shadows */
  --sh-xs: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --sh-sm: 0 2px 8px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.05);
  --sh-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.05);
  --sh-lg: 0 8px 32px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --sh-xl: 0 20px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.07);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Roboto', 'Google Sans', Arial, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
input, button, select { font-family: inherit; }

/* ============================================================
   LAYOUT HELPERS
============================================================ */
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.wrap-sm { max-width: 920px; margin: 0 auto; padding: 0 20px; }
.wrap-xs { max-width: 640px; margin: 0 auto; padding: 0 20px; }

.text-center { text-align: center; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}
.eyebrow.light {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

h1, h2, h3, h4 {
  font-family: 'Roboto', 'Google Sans', Arial, sans-serif;
  line-height: 1.2;
  color: var(--gray-900);
  font-weight: 700;
}

.sec-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.18;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.sec-sub {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.72;
  max-width: 540px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
  border: none;
  white-space: nowrap;
  text-decoration: none;
  border-radius: var(--r-full);
  -webkit-user-select: none;
  user-select: none;
}
/* Sizes */
.btn-xl  { padding: 17px 36px; font-size: 17px; }
.btn-lg  { padding: 14px 28px; font-size: 16px; }
.btn-md  { padding: 11px 22px; font-size: 14px; }
.btn-sm  { padding: 8px  16px; font-size: 13px; }

/* Variants */
.btn-blue {
  background: var(--blue-700);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(29,106,224,0.35);
}
.btn-blue:hover {
  background: #1649c0;
  box-shadow: 0 4px 16px rgba(29,106,224,0.45);
  transform: translateY(-1px);
}
.btn-blue:active { transform: translateY(0); }

.btn-white {
  background: var(--white);
  color: var(--blue-700);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--gray-200);
}
.btn-white:hover {
  background: var(--blue-50);
  border-color: var(--blue-100);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(22,163,74,0.35);
}
.btn-green:hover {
  background: #15803d;
  box-shadow: 0 4px 14px rgba(22,163,74,0.4);
  transform: translateY(-1px);
}

/* Per-service call buttons */
.btn-plumb  { background: var(--plumb);  color: #fff; box-shadow: 0 2px 8px rgba(29,106,224,0.3); }
.btn-roof   { background: var(--roof);   color: #fff; box-shadow: 0 2px 8px rgba(124,58,237,0.3); }
.btn-pest   { background: var(--pest);   color: #fff; box-shadow: 0 2px 8px rgba(22,163,74,0.3); }
.btn-animal { background: var(--animal); color: #fff; box-shadow: 0 2px 8px rgba(217,119,6,0.3); }
.btn-plumb:hover  { background: #1649c0; transform: translateY(-1px); }
.btn-roof:hover   { background: #6d28d9; transform: translateY(-1px); }
.btn-pest:hover   { background: #15803d; transform: translateY(-1px); }
.btn-animal:hover { background: #b45309; transform: translateY(-1px); }

/* Dropdown container */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
 
/* Dropdown button - looks like regular nav link */
.nav-dropdown-btn {
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
 
.nav-dropdown-btn:hover {
  color: #1d6ae0;
}
 
.nav-dropdown-btn.active {
  color: #1d6ae0;
}
 
/* Dropdown arrow */
.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.2s;
}
 
.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}
 
/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}
 
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
 
/* Dropdown items */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.15s;
}
 
.dropdown-item:hover {
  background: #f3f4f6;
  color: #1d6ae0;
}
 
.dropdown-item-icon {
  font-size: 20px;
  width: 24px;
  text-align: center;
}
 
.dropdown-item-text {
  flex: 1;
}
 
/* Mobile - hide dropdown on mobile, show in mobile nav instead */
@media (max-width: 968px) {
  .nav-dropdown {
    display: none;
  }
}
/* ============================================================
   NAVBAR
============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--sh-xs);
  transition: box-shadow 0.2s;
}
#nav.elevated { box-shadow: var(--sh-md); }

.nav-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--blue-700);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.3px;
}
.nav-logo-text span { color: var(--blue-700); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 7px 13px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.15s;
}
.nav-link:hover { color: var(--blue-700); background: var(--blue-50); }

/* Nav phones - desktop only */
.nav-phones {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-phone-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-phone-chip:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: var(--sh-sm); }
.np-plumb  { background: var(--plumb); }
.np-roof   { background: var(--roof); }
.np-pest   { background: var(--pest); }
.np-animal { background: var(--animal); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
}
.nav-hamburger span {
  width: 20px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  display: block;
  transition: 0.2s;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  z-index: 99;
  padding: 16px 20px 24px;
  box-shadow: var(--sh-lg);
  flex-direction: column;
  gap: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 14px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  transition: background 0.15s;
}
.mobile-nav a:hover { background: var(--gray-100); }
.mobile-nav-div { height: 1px; background: var(--gray-200); margin: 6px 0; }
.mobile-nav-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 4px 14px;
}
.mobile-call-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}
.mob-call-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  background: var(--white);
  padding: 100px 20px 80px;
  position: relative;
  overflow: visible;    /* ← was overflow: hidden */
  z-index: 10;
}

/* Subtle blue dot background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--blue-100) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
  z-index: 0;
}
/* Fade out dots at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--white));
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-lt);
  color: var(--green);
  border: 1px solid #bbf7d0;
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-badge .live-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.hero h1 {
  font-family:  Roboto, 'Google Sans',Arial, sans-serif;
  font-size:clamp(38px,4vw,60px);
  line-height:1.08;
  color:#0F52BA;
  margin-bottom:24px;
  letter-spacing:-0.2px;
}
.hero h1 em {
  font-style:italic; 
  background:linear-gradient(135deg,#60a5fa,#38bdf8,#22d3ee);
  -webkit-background-clip:text;
 /* -webkit-text-fill-color:transparent;*/
  background-clip:text; color:#40B5AD;
  font-size:clamp(34px,3vw,50px);
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.hero-title .blue { color: var(--blue-700); }

.hero-desc {
  font-size: 20px;
  color: var(--gray-600);
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 500px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;          /* ← sits below dropdown */
  margin-top: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
}
.trust-item .check {
  width: 20px; height: 20px;
  background: var(--green-lt);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Hero Card */
.hero-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  box-shadow: var(--sh-xl);
  position: relative;
  z-index: 2;
}
.hero-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.hero-card-sub {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.service-pick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.sp-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  border: 2px solid var(--gray-200);
  border-radius: var(--r-lg);
  background: var(--white);
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
  color: inherit;
}
.sp-btn:hover  { border-color: var(--blue-500); background: var(--blue-50); }
.sp-btn.active { border-color: var(--blue-700); background: var(--blue-50); }
.sp-btn .sp-icon { font-size: 26px; }
.sp-btn .sp-label { font-size: 14px; font-weight: 700; color: var(--gray-800); }
.sp-btn .sp-num   { font-size: 12px; color: var(--gray-400); font-weight: 700; }
.sp-btn.active .sp-num { color: var(--blue-600); }

.zip-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.zip-row input {
  flex: 1;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 12px 14px;
  font-size: 15px;
  color: var(--gray-900);
  outline: none;
  transition: border-color 0.15s;
  background: var(--gray-50);
}
.zip-row input:focus { border-color: var(--blue-500); background: var(--white); }
.zip-row input::placeholder { color: var(--gray-400); }
.zip-row button {
  background: var(--blue-700);
  color: white;
  border: none;
  border-radius: var(--r-md);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.zip-row button:hover { background: #1649c0; }

.card-micro {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  line-height: 1.5;
}
.card-micro strong { color: var(--green); }

/* ============================================================
   NUMBERS SECTION — Hero bottom prominent phone strip
============================================================ */
.phone-strip {
  background: var(--gray-900);
  padding: 0;
}
.phone-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ps-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.15s;
  gap: 6px;
}
.ps-item:last-child { border-right: none; }
.ps-item:hover { background: rgba(255,255,255,0.05); }
.ps-icon { font-size: 22px; }
.ps-service {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.ps-number {
  font-size: clamp(20px, 4vw, 23px);
  font-weight: 800;
  color: white;
  letter-spacing: -0.1px;
}
.ps-free {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}
.ps-item.ps-plumb  .ps-number { color: #93c5fd; }
.ps-item.ps-roof   .ps-number { color: #c4b5fd; }
.ps-item.ps-pest   .ps-number { color: #86efac; }
.ps-item.ps-animal .ps-number { color: #fcd34d; }

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
  background: var(--blue-700);
  padding: 12px 20px;
}
.trust-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.tb-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}
.tb-item:last-child { border-right: none; }
.tb-icon { font-size: 15px; }

/* ============================================================
   SERVICES SECTION
============================================================ */
.services {
  padding: 88px 20px;
  background: var(--gray-50);
}
.sec-head {
  margin-bottom: 52px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: all 0.22s;
  color: inherit;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}

.svc-card-top {
  padding: 28px 28px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.svc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.sc-plumb .svc-icon-wrap  { background: var(--plumb-lt); }
.sc-roof  .svc-icon-wrap  { background: var(--roof-lt); }
.sc-pest  .svc-icon-wrap  { background: var(--pest-lt); }
.sc-animal .svc-icon-wrap { background: var(--animal-lt); }

.svc-rating-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
}
.svc-rating-badge .star { color: #f59e0b; font-size: 12px; }

.svc-card-body { padding: 18px 28px 0; }
.svc-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.svc-card-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.svc-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--r-full);
  border: 1px solid;
}
.sc-plumb  .svc-tag { background: var(--plumb-lt);  color: #1e40af; border-color: #bfdbfe; }
.sc-roof   .svc-tag { background: var(--roof-lt);   color: #5b21b6; border-color: #ddd6fe; }
.sc-pest   .svc-tag { background: var(--pest-lt);   color: #15803d; border-color: #bbf7d0; }
.sc-animal .svc-tag { background: var(--animal-lt); color: #92400e; border-color: #fde68a; }

.svc-card-footer {
  padding: 18px 28px 24px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.svc-phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: all 0.18s;
}
.svc-phone-btn:hover { transform: translateY(-1px); opacity: 0.92; }
.sc-plumb  .svc-phone-btn { background: var(--plumb); }
.sc-roof   .svc-phone-btn { background: var(--roof); }
.sc-pest   .svc-phone-btn { background: var(--pest); }
.sc-animal .svc-phone-btn { background: var(--animal); }

.svc-avail {
  font-size: 12px;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 5px;
}
.svc-avail::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.how { padding: 88px 20px; background: var(--white); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 52px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-100), var(--blue-500), var(--blue-100));
  border-radius: 2px;
  z-index: 0;
}

.step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  font-weight: 800;
  border: 3px solid var(--white);
  box-shadow: var(--sh-md);
  position: relative;
}
.step-num.s1 { background: var(--blue-50);  color: var(--blue-700); }
.step-num.s2 { background: #ede9fe;         color: var(--roof); }
.step-num.s3 { background: var(--green-lt); color: var(--green); }
.step-num.s4 { background: #fef3c7;         color: var(--amber); }

.step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ============================================================
   CALL DIRECTORY
============================================================ */
.directory {
  padding: 72px 20px;
  background: var(--blue-700);
  position: relative;
  overflow: hidden;
}
.directory::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.directory-inner { position: relative; z-index: 2; }

.dir-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.dir-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-xl);
  padding: 28px 20px 24px;
  text-align: center;
  transition: all 0.18s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.dir-card:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.dir-card-icon { font-size: 36px; }
.dir-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: white;
}
.dir-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  flex: 1;
}
.dir-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: all 0.18s;
  margin-top: 4px;
}
.dir-call-btn:hover { transform: scale(1.03); filter: brightness(1.08); }
.dc-plumb  .dir-call-btn { background: #1d4ed8; box-shadow: 0 4px 14px rgba(29,78,216,0.5); }
.dc-roof   .dir-call-btn { background: #6d28d9; box-shadow: 0 4px 14px rgba(109,40,217,0.5); }
.dc-pest   .dir-call-btn { background: #15803d; box-shadow: 0 4px 14px rgba(21,128,61,0.5); }
.dc-animal .dir-call-btn { background: #b45309; box-shadow: 0 4px 14px rgba(180,83,9,0.5); }

.dir-hours {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 5px;
}
.dir-hours::before {
  content: '';
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

/* ============================================================
   EMERGENCY BANNER
============================================================ */
.emergency {
  padding: 56px 20px;
  background: var(--gray-900);
}
.emergency-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.emergency h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}
.emergency p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.emergency-phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.emg-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: all 0.18s;
  min-width: 220px;
}
.emg-btn:hover { transform: translateX(4px); filter: brightness(1.1); }
.emg-btn .emg-svc {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  display: block;
  line-height: 1;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.emg-btn .emg-num { font-size: 16px; display: block; line-height: 1; }
.emg-plumb  { background: rgba(29,106,224,0.3);  border: 1px solid rgba(29,106,224,0.4); }
.emg-roof   { background: rgba(124,58,237,0.3);  border: 1px solid rgba(124,58,237,0.4); }
.emg-pest   { background: rgba(22,163,74,0.3);   border: 1px solid rgba(22,163,74,0.4); }
.emg-animal { background: rgba(217,119,6,0.3);   border: 1px solid rgba(217,119,6,0.4); }

/* ============================================================
   WHY US
============================================================ */
.why { padding: 88px 20px; background: var(--gray-50); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 52px;
}

.why-features { display: flex; flex-direction: column; gap: 16px; }
.why-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  transition: all 0.18s;
}
.why-feat:hover {
  border-color: var(--blue-100);
  box-shadow: var(--sh-sm);
  transform: translateX(4px);
}
.wf-icon {
  width: 44px; height: 44px;
  background: var(--blue-50);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.wf-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.wf-text p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.why-visual {
  background: linear-gradient(160deg, var(--blue-700), #1e3a8a 60%, #0f172a);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  color: white;
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.why-visual-inner { position: relative; z-index: 1; }

.why-visual h3 {
  font-size: 26px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}
.why-visual p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  line-height: 1.65;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.wstat {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  padding: 18px 16px;
  text-align: center;
}
.wstat-num {
  font-size: 28px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}
.wstat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.why-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--blue-700);
  padding: 13px 24px;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.18s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.why-cta-link:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* ============================================================
   REVIEWS
============================================================ */
.reviews { padding: 88px 20px; background: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 24px;
  transition: all 0.18s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card:hover {
  border-color: var(--blue-100);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}

.review-header { display: flex; align-items: center; justify-content: space-between; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: white;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-meta { margin-left: 12px; flex: 1; }
.review-name { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.review-loc  { font-size: 12px; color: var(--gray-400); margin-top: 1px; }
.review-svc-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.rsp-plumb  { background: var(--plumb-lt);  color: #1e40af; }
.rsp-roof   { background: var(--roof-lt);   color: #5b21b6; }
.rsp-pest   { background: var(--pest-lt);   color: #15803d; }
.rsp-animal { background: var(--animal-lt); color: #92400e; }

.review-stars { color: #f59e0b; font-size: 15px; letter-spacing: 1px; }
.review-text  { font-size: 14px; color: var(--gray-600); line-height: 1.72; font-style: italic; }

/* ============================================================
   AREAS
============================================================ */
.areas { padding: 72px 20px; background: var(--gray-50); }

.areas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 36px;
}
.area-chip {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  padding: 7px 16px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s;
  cursor: pointer;
}
.area-chip:hover { border-color: var(--blue-500); color: var(--blue-700); background: var(--blue-50); }
.area-chip.more  { background: var(--blue-50); border-color: var(--blue-100); color: var(--blue-700); font-weight: 700; }

/* ============================================================
   FAQ
============================================================ */
.faq { padding: 88px 20px; background: var(--white); }
.faq-list { margin-top: 48px; }

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  margin-bottom: 10px;
  background: var(--white);
  overflow: hidden;
  transition: all 0.18s;
}
.faq-item:hover { border-color: var(--blue-100); }
.faq-item.open  { border-color: var(--blue-500); box-shadow: 0 0 0 3px var(--blue-50); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-900);
  user-select: none;
  gap: 16px;
}
.faq-toggle {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
  transition: all 0.2s;
}
.faq-item.open .faq-toggle { background: var(--blue-700); color: white; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.4s;
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.75;
  padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 700px; padding: 0 20px 20px; }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--gray-900);
  padding: 64px 20px 0;
}

.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-icon {
  width: 34px; height: 34px;
  background: var(--blue-700);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.footer-logo-text {
  font-size: 25px;
  font-weight: 900;
  color: white; 
}
.footer-logo-text span { color: #93c5fd; }

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 260px;
}

.footer-phone-list { display: flex; flex-direction: column; gap: 8px; }
.fpl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: all 0.15s;
}
.fpl-item:hover { filter: brightness(1.1); transform: translateX(3px); }
.fpl-svc { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 400; min-width: 90px; }
.fpl-plumb  { background: rgba(29,106,224,0.25); border: 1px solid rgba(29,106,224,0.3); }
.fpl-roof   { background: rgba(124,58,237,0.25); border: 1px solid rgba(124,58,237,0.3); }
.fpl-pest   { background: rgba(22,163,74,0.25);  border: 1px solid rgba(22,163,74,0.3); }
.fpl-animal { background: rgba(217,119,6,0.25);  border: 1px solid rgba(217,119,6,0.3); }

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: white; }

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.15s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.65); }

/* ============================================================
   STICKY BOTTOM BAR — mobile only
============================================================ */
.sticky-bottom {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 98;
  background: var(--blue-100);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 8px 12px;
  gap: 6px;
}
.sticky-bottom a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 6px;
  border-radius: var(--r-md);
  font-size: 12px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}
.hero-search-message {margin-bottom:20px;color: var(--green);}
.lead {font-size:25px;}
/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up 0.55s ease both; }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.15s; }
.d3 { animation-delay: 0.25s; }
.d4 { animation-delay: 0.35s; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .hero-inner    { gap: 40px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid      { gap: 40px; }
}

@media (max-width: 960px) {
  .hero-inner    { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .hero-card     { max-width: 480px; margin: 0 auto; }
  .hero-title    { font-size: 34px; }
  .hero-desc     { font-size: 16px; }
  .svc-grid      { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .steps         { grid-template-columns: repeat(2,1fr); }
  .steps::before { display: none; }
  .dir-grid      { grid-template-columns: repeat(2,1fr); }
  .why-grid      { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; max-width: 500px; margin: 52px auto 0; }
  .emergency-inner { grid-template-columns: 1fr; text-align: center; }
  .emergency-phones { align-items: center; }
  .emg-btn       { min-width: 240px; }
  .phone-strip-inner { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links     { display: none; }
  .nav-phones    { display: none; }
  .nav-hamburger { display: flex; }
  .steps         { grid-template-columns: 1fr; }
  .dir-grid      { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sticky-bottom { display: flex; }
  body           { padding-bottom: 62px; }
  .trust-bar-inner { gap: 0; }
  .tb-item       { padding: 4px 14px; font-size: 12px; }
  .hero { padding: 84px 20px 60px; }
  .hero-ctas     { flex-direction: column; align-items: flex-start; }
  .services, .how, .why, .reviews, .faq { padding: 64px 20px; }
}

@media (max-width: 480px) {
  .dir-grid      { grid-template-columns: 1fr; }
  .hero-trust-row { gap: 12px; }
  .phone-strip-inner { grid-template-columns: 1fr 1fr; }
  .mobile-call-grid  { grid-template-columns: 1fr; }
  .service-pick-grid { gap: 8px; }
}
/* ============================================================
   HERO SEARCH BAR
============================================================ */

.hero-search-wrap {
  width: 100%;
  max-width: 620px;
  margin-bottom: 36px;
  position: relative;
  z-index: 500;         /* ← above trust row */
}

.hero-search-box {
  position: relative;
  width: 100%;
  z-index: 500;
}

.search-inner {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--r-full);
  padding: 6px 6px 6px 18px;
  gap: 10px;
  box-shadow: var(--sh-lg);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.search-inner:focus-within {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.12), var(--sh-lg);
}

.search-icon {
  font-size: 18px;
  flex-shrink: 0;
  color: var(--gray-400);
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--gray-900);
  background: transparent;
  min-width: 0;
  padding: 6px 0;
}
.search-input::placeholder { color: var(--gray-400); font-size: 14px; }

.search-zip {
  width: 96px;
  border: none;
  border-left: 1px solid var(--gray-200);
  outline: none;
  font-size: 14px;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--gray-700);
  background: transparent;
  padding: 6px 10px;
  text-align: center;
  flex-shrink: 0;
}
.search-zip::placeholder { color: var(--gray-400); }

.search-btn {
  background: var(--blue-700);
  color: white;
  border: none;
  border-radius: var(--r-full);
  padding: 11px 22px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Roboto', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.18s, transform 0.1s;
  white-space: nowrap;
  flex-shrink: 0;
}
.search-btn:hover   { background: #1649c0; transform: scale(1.02); }
.search-btn:active  { transform: scale(0.98); }

/* Dropdown */
.search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.1);
  z-index: 9999;
  overflow: hidden;
  max-height: 380px;
  overflow-y: auto;
  isolation: isolate;   /* ← creates new stacking context */
}
.search-dropdown.visible { display: block; }

.dd-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 12px 18px 6px;
  border-top: 1px solid var(--gray-100);
}
.dd-group-label:first-child { border-top: none; }

.dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  cursor: pointer;
  transition: background 0.12s;
  text-decoration: none;
  color: var(--gray-800);
}
.dd-item:hover,
.dd-item.focused {
  background: var(--blue-50);
}
.dd-item-icon {
  width: 34px; height: 34px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.dd-plumb  .dd-item-icon { background: var(--plumb-lt); }
.dd-roof   .dd-item-icon { background: var(--roof-lt); }
.dd-pest   .dd-item-icon { background: var(--pest-lt); }
.dd-animal .dd-item-icon { background: var(--animal-lt); }

.dd-item-text { flex: 1; min-width: 0; }
.dd-item-query {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-900);
  line-height: 1.3;
}
.dd-item-query mark {
  background: none;
  color: var(--blue-700);
  font-weight: 700;
}
.dd-item-service {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 1px;
}
.dd-item-arrow {
  font-size: 13px;
  color: var(--gray-300);
  flex-shrink: 0;
}

/* No results */
.dd-empty {
  padding: 20px 18px;
  text-align: center;
  font-size: 14px;
  color: var(--gray-500);
}

/* Quick pick chips */
.search-quick-picks {
  display: flex;
  align-items: center;
  gap: 8px; 
  flex-wrap: wrap;
  margin-top: 14px;
}
.qp-label { margin:2px 5%;
  font-size: 13px;
  color: #333333;
  font-weight: 500;
  flex-shrink: 0;
}
.qp-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: blue;
  transition: all 0.15s;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
}
.qp-chip:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-1px);
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .search-inner   { padding: 5px 5px 5px 14px; gap: 6px; border-radius: 14px; }
  .search-input   { font-size: 14px; }
  .search-zip     { width: 80px; font-size: 13px; padding: 6px 8px; }
  .search-btn     { padding: 10px 14px; font-size: 13px; }
  .search-dropdown { border-radius: var(--r-lg); }
}
@media (max-width: 480px) {
  .search-zip { display: none; }
  .why-visual { 
  padding: 40px 20px;
}
.why-grid {min-width:340px;margin-left:-25px;}
.why-features { gap: 12px; }
.service-grid{min-width:340px;margin-left:-25px;}
.faq-item {min-width:320px;margin-left:-30px;}
}
