/* ============================================
   Hempstead Plumber — Global Styles
   ============================================ */

/* Resets */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, picture, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================
   Variables
   ============================================ */
:root {
  /* Brand palette: blue / white / light grey */
  --blue-900: #0a2540;
  --blue-800: #0d2d52;
  --blue-700: #123a6b;
  --blue-600: #1763c6;
  --blue-500: #1d6ee0;
  --blue-400: #3b82f6;
  --blue-50:  #eaf2ff;

  --ink-900:  #0f172a;
  --ink-700:  #334155;
  --ink-500:  #64748b;
  --ink-400:  #94a3b8;

  --grey-50:  #f7f9fc;
  --grey-100: #eef2f7;
  --grey-200: #e2e8f0;
  --grey-300: #cbd5e1;

  --white:    #ffffff;
  --black:    #0a0d12;
  --hero-bg:  #0d1117;

  --gold:     #f5b324;
  --danger:   #dc2626;

  /* Typography */
  --font-heading: 'Lato', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.08);
  --shadow:    0 4px 14px rgba(15,23,42,.08);
  --shadow-lg: 0 18px 40px -12px rgba(15,23,42,.18);

  --header-h: 76px;
  --topbar-h: 38px;

  /* Spacing scale */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px;
}

/* ============================================
   Base typography
   ============================================ */
body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--white);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--ink-900);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.125rem; }

p { color: var(--ink-700); margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ============================================
   Layout utilities
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section { padding: 88px 0; }
.section-alt { padding: 88px 0; background: var(--grey-50); }

.text-center { text-align: center; }
.mt-3 { margin-top: 24px; }
.mt-5 { margin-top: 48px; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}

.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--ink-500);
  max-width: 720px;
  text-wrap: pretty;
}
.section-subtitle.centered { margin: 0 auto; }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 8px 20px -8px rgba(23,99,198,.55);
}
.btn-primary:hover {
  background: var(--blue-500);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(23,99,198,.65);
}

.btn-phone {
  background: var(--blue-600);
  color: var(--white);
  font-size: 1.05rem;
  padding: 16px 28px;
  box-shadow: 0 10px 24px -10px rgba(23,99,198,.7);
}
.btn-phone:hover { background: var(--blue-500); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--blue-600);
  border: 1.5px solid var(--blue-600);
}
.btn-ghost:hover { background: var(--blue-50); }

.btn-light {
  background: var(--white);
  color: var(--blue-700);
}
.btn-light:hover { background: var(--grey-100); }

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
  background: var(--blue-900);
  color: var(--white);
  font-size: 0.84rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 600;
}
.top-bar a:hover { color: var(--blue-50); }
.top-bar .top-bar-info {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.top-bar .top-bar-meta { color: rgba(255,255,255,.75); }

/* ============================================
   Header / Nav
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.98);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--grey-200);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.nav-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  display: grid;
  place-items: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 6px 14px -6px rgba(23,99,198,.6);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text strong {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--ink-900);
}
.nav-logo-text span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--blue-600);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links > a,
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-700);
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-links > a:hover,
.nav-dropdown:hover > a {
  color: var(--blue-600);
  background: var(--grey-50);
}
.nav-links > a.active {
  color: var(--blue-600);
}

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 280px;
  display: grid;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .15s, transform .15s;
}
/* Invisible hover bridge: covers the 6px gap between the trigger
   and the menu so the dropdown doesn't close mid-traverse. */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-700);
}
.nav-dropdown-menu a:hover {
  background: var(--grey-50);
  color: var(--blue-600);
}

.nav-cta {
  margin-left: 10px;
  padding: 11px 18px !important;
  background: var(--blue-600);
  color: var(--white) !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--blue-500) !important;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ============================================
   Hero — dark
   ============================================ */
.hero {
  background:
    radial-gradient(1200px 500px at 80% 0%, rgba(23,99,198,.18), transparent 60%),
    radial-gradient(900px 500px at 10% 100%, rgba(23,99,198,.12), transparent 60%),
    var(--hero-bg);
  color: var(--white);
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-400);
  background: rgba(59,130,246,.12);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(59,130,246,.25);
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 18px;
  text-wrap: balance;
}
.hero p.lede {
  font-size: 1.15rem;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  margin: 0 auto 28px;
  text-wrap: pretty;
}
.hero-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-top: 22px;
  color: var(--gold);
}
.hero-stars svg { width: 18px; height: 18px; }

.hero-checks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 28px;
  max-width: 820px;
  margin: 28px auto 0;
}
.hero-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,.85);
  text-align: left;
}
.hero-check svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--blue-400);
  margin-top: 2px;
}

/* ============================================
   Stats Bar
   ============================================ */
.stats-bar {
  background: var(--white);
  margin-top: -50px;
  position: relative;
  z-index: 2;
}
.stats-bar-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--grey-200);
}
.stat-item:last-child { border-right: none; }
.stat-item h3 {
  font-size: 2.25rem;
  color: var(--blue-600);
  margin-bottom: 4px;
}
.stat-item p {
  font-size: 0.92rem;
  color: var(--ink-500);
  font-weight: 500;
}

/* ============================================
   Service cards
   ============================================ */
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-50);
}
.service-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.service-card-icon svg { width: 20px; height: 20px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-card p {
  font-size: 0.95rem;
  color: var(--ink-500);
  margin-bottom: 18px;
  flex-grow: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--blue-600);
}
.service-card-link svg {
  width: 16px; height: 16px;
  transition: transform .15s;
}
.service-card-link:hover svg { transform: translateX(3px); }

.service-card-cta {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  color: var(--white);
  border: none;
  text-align: left;
}
.service-card-cta h3 { color: var(--white); margin-bottom: 8px; }
.service-card-cta p { color: rgba(255,255,255,.8); margin-bottom: 20px; }
.service-card-cta .service-card-icon {
  background: rgba(255,255,255,.12);
  color: var(--white);
}
.service-card-cta .btn {
  background: var(--white);
  color: var(--blue-700);
  align-self: flex-start;
}
.service-card-cta .btn:hover { background: var(--blue-50); }

/* ============================================
   Trust badges
   ============================================ */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.trust-badge {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-badge-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.trust-badge-icon svg { width: 22px; height: 22px; }
.trust-badge span {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink-900);
  font-size: 0.95rem;
}

/* ============================================
   Comparison table (Us vs Them)
   ============================================ */
.compare-wrap {
  max-width: 920px;
  margin: 48px auto 0;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
.compare-table th,
.compare-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid var(--grey-200);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table thead th {
  background: var(--grey-50);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink-500);
  font-size: 0.95rem;
  padding: 22px 20px;
  border-bottom: 1px solid var(--grey-200);
}
.compare-table thead th.col-us {
  color: var(--blue-600);
  font-size: 1.05rem;
  font-weight: 800;
}
.compare-table .feature-cell {
  text-align: left;
  font-weight: 600;
  color: var(--ink-900);
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
}
.compare-table .feature-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.compare-table .feature-icon svg { width: 18px; height: 18px; }
.compare-table tbody tr:nth-child(even) td { background: var(--grey-50); }
.compare-table tbody tr:nth-child(even) .feature-icon { background: var(--white); }

.mark-yes {
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  color: var(--blue-600);
}
.mark-yes svg { width: 26px; height: 26px; stroke-width: 3; }
.mark-no {
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  color: var(--ink-400);
}
.mark-no svg { width: 22px; height: 22px; stroke-width: 2.5; }

.col-us-header {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}
.col-us-header small {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 2px;
}
.compare-cta {
  text-align: center;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .compare-table th,
  .compare-table td { padding: 14px 10px; }
  .compare-table .feature-cell {
    min-width: 0;
    gap: 10px;
    font-size: 0.92rem;
  }
  .compare-table .feature-icon { width: 32px; height: 32px; }
  .compare-table thead th { font-size: 0.82rem; padding: 16px 8px; }
  .mark-yes svg, .mark-no svg { width: 20px; height: 20px; }
}

/* ============================================
   Why Choose Us / Image content
   ============================================ */
.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--grey-100);
  aspect-ratio: 4/3;
  position: relative;
}
.content-image-placeholder {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  padding: 24px;
}
.content-image-placeholder svg { width: 64px; height: 64px; opacity: 0.5; }
.content-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.check-list { display: grid; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--ink-700);
}
.check-list li svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--blue-600);
  margin-top: 2px;
}

/* ============================================
   Process Steps
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.process-step-number {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
  box-shadow: 0 6px 14px -6px rgba(23,99,198,.6);
}
.process-step h4 { margin-bottom: 6px; }
.process-step p { font-size: 0.95rem; color: var(--ink-500); }

/* ============================================
   Mid CTA
   ============================================ */
.mid-cta {
  background:
    radial-gradient(800px 400px at 70% 30%, rgba(59,130,246,.25), transparent 60%),
    linear-gradient(135deg, var(--blue-800), var(--blue-900));
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.mid-cta h2 {
  color: var(--white);
  margin-bottom: 12px;
  text-wrap: balance;
}
.mid-cta p {
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  max-width: 640px;
  margin: 0 auto 26px;
}
.mid-cta .btn-phone {
  background: var(--white);
  color: var(--blue-700);
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.4);
}
.mid-cta .btn-phone:hover { background: var(--blue-50); }

/* ============================================
   Testimonials
   ============================================ */
.testimonials-section { padding: 88px 0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: var(--gold);
}
.testimonial-stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonial-card p {
  color: var(--ink-700);
  font-size: 1rem;
  margin-bottom: 20px;
  text-wrap: pretty;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--grey-200);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-700);
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
}
.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink-900);
  font-size: 0.95rem;
}
.testimonial-location {
  font-size: 0.85rem;
  color: var(--ink-500);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .15s, border-color .15s;
}
.faq-item.open {
  border-color: var(--blue-50);
  box-shadow: var(--shadow);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink-900);
  font-size: 1.02rem;
  gap: 16px;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-600);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--ink-500);
  font-size: 0.98rem;
  text-wrap: pretty;
}

/* ============================================
   Service Areas
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.area-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-700);
  transition: all .15s;
}
.area-chip:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
  background: var(--blue-50);
}
.area-chip svg {
  width: 16px; height: 16px;
  color: var(--blue-600);
  flex-shrink: 0;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-col h5 {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 0.93rem;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.footer-col a:hover { color: var(--white); }
.footer-brand .nav-logo-text strong { color: var(--white); }
.footer-brand p {
  font-size: 0.93rem;
  color: rgba(255,255,255,.6);
  margin: 16px 0;
  max-width: 320px;
}
.footer-contact {
  display: grid;
  gap: 8px;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}
.footer-contact a svg {
  width: 16px; height: 16px;
  color: var(--blue-400);
  flex-shrink: 0;
}
.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom-links {
  display: flex;
  gap: 18px;
}
.footer-bottom-links a:hover { color: var(--white); }

/* ============================================
   Floating Mobile Call CTA
   ============================================ */
.mobile-call-cta {
  display: none;
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: var(--blue-600);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 14px 30px -8px rgba(23,99,198,.7);
  z-index: 90;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
}
/* When JS is active (html.js-cta set in <head>), hide on load and reveal on scroll */
html.js-cta .mobile-call-cta {
  transform: translateY(160%);
  opacity: 0;
  pointer-events: none;
}
html.js-cta .mobile-call-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-call-cta svg { width: 20px; height: 20px; }

/* ============================================
   Mobile Nav
   ============================================ */
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,.5);
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
  z-index: 200;
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 90vw);
  height: 100%;
  background: var(--white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform .25s ease;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-nav.active { transform: translateX(0); }
.mobile-nav-close {
  align-self: flex-end;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 8px;
  color: var(--ink-700);
}
.mobile-nav-close:hover { background: var(--grey-50); }
.mobile-nav-close svg { width: 22px; height: 22px; }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 20px;
}
.mobile-nav-links a {
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--ink-700);
}
.mobile-nav-links a:hover {
  background: var(--grey-50);
  color: var(--blue-600);
}
.mobile-nav-section {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--ink-400);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 14px 6px;
}
.mobile-nav-phone {
  margin-top: auto;
  padding-top: 24px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trust-badges { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .top-bar .top-bar-info { gap: 10px; }
}

@media (max-width: 768px) {
  .section, .section-alt, .testimonials-section { padding: 64px 0; }
  .container { padding: 0 18px; }
  .nav-logo-text strong { font-size: 1.05rem; }
  .nav-logo-text span { font-size: 0.62rem; }

  .top-bar { font-size: 0.78rem; }
  .top-bar .top-bar-meta { display: none; }

  .hero { padding: 64px 0 80px; }
  .hero-checks { grid-template-columns: 1fr; gap: 14px; max-width: 360px; }
  .hero-check br { display: none; }
  .hero-check span { white-space: normal; }
  .stats-bar { margin-top: -40px; }
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
    padding: 26px 12px;
  }
  .stat-item { padding: 0 8px; border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--grey-200); }
  .stat-item h3 { font-size: 1.7rem; }

  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .mobile-call-cta { display: flex; }
  body { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .trust-badges { grid-template-columns: 1fr; }
  .top-bar { display: none; }
}

/* ============================================
   Hero modifier for inner / legal pages
   ============================================ */
.hero-legal { padding: 72px 0 80px; }
.hero-legal .hero-content { max-width: 820px; }
.hero-legal h1 { font-size: clamp(2.2rem, 4.4vw, 3.1rem); margin-bottom: 14px; }
.hero-legal p.lede { font-size: 1.05rem; max-width: 680px; margin-bottom: 18px; }
.legal-meta {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
}

/* ============================================
   Legal page body (Terms / Privacy)
   ============================================ */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--grey-800, #333);
}
.legal-page h2 {
  font-size: 1.5rem;
  margin: 40px 0 14px;
  color: var(--text, #222);
  scroll-margin-top: 96px;
}
.legal-page h2:first-child { margin-top: 0; }
.legal-page h3 {
  font-size: 1.1rem;
  margin: 24px 0 8px;
  color: var(--text, #222);
}
.legal-page p { margin: 0 0 16px; }
.legal-page ul {
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal-page li { margin-bottom: 8px; }
.legal-page a {
  color: var(--blue-600, #0d95ce);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-page a:hover { text-decoration: none; }
.legal-page strong { color: var(--text, #222); }

/* ============================================
   Service detail layout with sticky sidebar
   ============================================ */
.content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  align-items: start;
}
.content-main { min-width: 0; }
.content-main > * + * { margin-top: 56px; }

.content-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 20px;
}
@media (max-width: 992px) {
  .content-wrap { grid-template-columns: 1fr; gap: 48px; }
  .content-sidebar { position: static; }
}

/* Sidebar CTA (image + phone) */
.sidebar-cta-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(15, 28, 65, 0.07);
}
.sidebar-cta-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--grey-100);
}
.sidebar-cta-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sidebar-cta-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(13, 26, 60, 0.65) 100%);
  pointer-events: none;
}
.sidebar-cta-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #d32f2f;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(211, 47, 47, 0.45);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sidebar-cta-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  animation: sidebarPulse 1.6s ease-in-out infinite;
}
@keyframes sidebarPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  50% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}
.sidebar-cta-body {
  padding: 22px 22px 24px;
  text-align: center;
}
.sidebar-cta-body h3 {
  font-size: 1.2rem;
  margin: 0 0 8px;
  color: var(--text);
}
.sidebar-cta-body p {
  color: var(--ink-500, #555);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 18px;
}
.sidebar-cta-body .btn {
  width: 100%;
  justify-content: center;
}

/* Sidebar services list */
.sidebar-list-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 20px 22px 22px;
  box-shadow: 0 6px 22px rgba(15, 28, 65, 0.07);
}
.sidebar-list-card h4 {
  font-size: 0.95rem;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-200);
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.sidebar-list-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-list-card li { margin: 0; }
.sidebar-list-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink-700, #333);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background .15s, color .15s, transform .15s;
  text-decoration: none;
}
.sidebar-list-card a:hover {
  background: var(--blue-50);
  color: var(--blue-600);
  transform: translateX(2px);
}
.sidebar-list-card a svg {
  width: 14px;
  height: 14px;
  opacity: 0.4;
  flex-shrink: 0;
  margin-left: auto;
  transition: opacity .15s, transform .15s;
}
.sidebar-list-card a:hover svg {
  opacity: 1;
  transform: translateX(2px);
}
.sidebar-list-card .sidebar-list-back {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--grey-200);
  color: var(--blue-600, #0d95ce);
  font-weight: 600;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 0;
}
.sidebar-list-card .sidebar-list-back:hover {
  background: transparent;
  color: var(--blue-700);
  transform: none;
}
.sidebar-list-card .sidebar-list-back svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  margin-left: 0;
  transform: none;
}
.sidebar-list-card .sidebar-list-back:hover svg {
  opacity: 1;
  transform: translateX(-2px);
}

/* When using content-wrap, allow the main column to absorb existing
   section paddings — wrap children inherit comfortable spacing. */
.content-main .content-block {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: 0 4px 18px rgba(15, 28, 65, 0.04);
}
.content-main .content-block .section-label { text-align: left; }
.content-main .content-block .section-title { text-align: left; margin-top: 4px; }
.content-main .content-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-700, #444);
  margin: 0 0 14px;
}
.content-main .content-block p:last-child { margin-bottom: 0; }
.content-main .content-block strong { color: var(--text, #222); }
@media (max-width: 600px) {
  .content-main .content-block { padding: 24px 22px; }
}

/* ============================================
   Landing-page visual elements (service detail blocks)
   ============================================ */

/* Feature pills row (under intro heading) */
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-50);
  color: var(--blue-700);
  border: 1px solid rgba(13, 149, 206, 0.18);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}
.feature-pill svg { width: 14px; height: 14px; }

/* Callout cards (When to Call) — horizontal layout: icon left, content right */
.callout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 24px 0;
}
.callout-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 20px 22px;
  border-left: 4px solid var(--grey-200);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  row-gap: 6px;
  align-items: start;
}
.callout-card.is-red { border-left-color: #d32f2f; background: linear-gradient(90deg, rgba(211,47,47,0.05), transparent 40%); }
.callout-card.is-orange { border-left-color: #ed6c02; background: linear-gradient(90deg, rgba(237,108,2,0.05), transparent 40%); }
.callout-card.is-amber { border-left-color: #f59e0b; background: linear-gradient(90deg, rgba(245,158,11,0.06), transparent 40%); }
.callout-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--white);
  grid-row: 1 / span 2;
  margin-bottom: 0;
  align-self: start;
}
.callout-card.is-red .callout-card-icon { background: #d32f2f; }
.callout-card.is-orange .callout-card-icon { background: #ed6c02; }
.callout-card.is-amber .callout-card-icon { background: #f59e0b; }
.callout-card-icon svg { width: 20px; height: 20px; }
.callout-card h4 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 800;
  grid-column: 2;
  align-self: center;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.callout-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: var(--ink-700, #444);
  grid-column: 2;
}
@media (max-width: 480px) {
  .callout-card { padding: 18px; column-gap: 14px; }
  .callout-card h4 { min-height: auto; }
  .callout-card-icon { width: 36px; height: 36px; }
  .callout-card-icon svg { width: 18px; height: 18px; }
}

/* Response zones (How Fast) */
.response-zones {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 22px 0;
}
.zone-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 22px;
  padding: 18px 22px;
  border-radius: 12px;
  background: var(--blue-50);
  border: 1px solid rgba(13, 149, 206, 0.2);
  border-left: 4px solid var(--blue-600, #0d95ce);
}
.zone-card-alt {
  background: rgba(245, 158, 11, 0.07);
  border-color: rgba(245, 158, 11, 0.25);
  border-left-color: #f59e0b;
}
.zone-time {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--blue-700);
  line-height: 1;
  min-width: 88px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.zone-time small {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.zone-card-alt .zone-time { color: #b45309; }
.zone-area {
  font-size: 0.9rem;
  color: var(--ink-700);
  line-height: 1.45;
}

/* Feature list (Pricing) */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 22px 0;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--blue-50);
  border-radius: 12px;
  border: 1px solid rgba(13, 149, 206, 0.15);
}
.feature-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--blue-600);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.feature-item-icon svg { width: 18px; height: 18px; }
.feature-item-body { font-size: 0.92rem; line-height: 1.5; color: var(--ink-700); }
.feature-item-body strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.98rem;
}

/* Emergency CTA banner (under Common Emergencies grid) */
.emergency-cta-banner {
  margin-top: 28px;
  background: linear-gradient(135deg, var(--blue-700, #0d7eb3) 0%, var(--blue-900, #0a3a6c) 100%);
  border-radius: var(--radius-lg);
  padding: 26px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(13, 50, 100, 0.18);
  position: relative;
  overflow: hidden;
}
.emergency-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(600px 200px at 90% 50%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}
.emergency-cta-banner-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.emergency-cta-banner-icon svg { width: 28px; height: 28px; }
.emergency-cta-banner-text {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.emergency-cta-banner-text h3 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 800;
}
.emergency-cta-banner-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.5;
}
.emergency-cta-banner-btn {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  flex-shrink: 0;
}
.emergency-cta-banner-btn.btn-light {
  background: var(--white);
  color: var(--blue-700);
}
.emergency-cta-banner-btn.btn-light:hover {
  background: var(--blue-50);
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .emergency-cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 20px;
    gap: 14px;
  }
  .emergency-cta-banner-icon { margin: 0 auto; }
  .emergency-cta-banner-btn { width: 100%; justify-content: center; }
}

/* Numbered step cards (Before We Arrive) — horizontal layout */
.step-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 22px 0 0;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 20px 22px;
  border-left: 4px solid var(--blue-200, #bcdcef);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  row-gap: 6px;
  align-items: start;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.step-card:hover {
  border-left-color: var(--blue-600);
  box-shadow: 0 6px 18px rgba(15, 28, 65, 0.06);
  transform: translateY(-2px);
}
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  grid-row: 1 / span 2;
  margin-bottom: 0;
  align-self: start;
}
.step-card h4 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 800;
  grid-column: 2;
  align-self: center;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.step-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: var(--ink-700, #444);
  grid-column: 2;
}
@media (max-width: 480px) {
  .step-card { padding: 18px; column-gap: 14px; }
  .step-card h4 { min-height: auto; }
  .step-number { width: 36px; height: 36px; font-size: 0.95rem; }
}

@media (max-width: 768px) {
  .callout-grid,
  .response-zones,
  .feature-list,
  .step-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 540px) {
  .zone-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 18px;
  }
}

/* ============================================
   Service detail prose layout (service subpages)
   ============================================ */
.content-prose {
  max-width: 820px;
  margin: 0 auto;
}
.content-prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--grey-700, #444);
  margin: 0 0 18px;
}
.content-prose strong { color: var(--text, #222); }
.content-prose .section-label,
.content-prose .section-title {
  text-align: left;
}
.back-to-services {
  margin-bottom: 24px !important;
  font-size: 0.92rem !important;
}
.back-to-services a {
  color: var(--blue-600, #0d95ce);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.back-to-services a:hover { text-decoration: underline; }

/* ============================================
   Services hub list (services.html)
   ============================================ */
.services-list {
  margin-top: 56px;
  display: grid;
  gap: 28px;
}
.services-list-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(0,0,0,.04));
  transition: box-shadow .2s, transform .2s, border-color .2s;
  scroll-margin-top: 96px;
}
.services-list-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--blue-200, #c7e4f3);
}
.services-list-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-50, #eaf4fb), var(--blue-100, #d6ecf7));
  color: var(--blue-600, #0d95ce);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.services-list-icon svg { width: 24px; height: 24px; }
.services-list-body h3 {
  font-size: 1.5rem;
  margin: 0 0 12px;
  color: var(--text, #222);
}
.services-list-body p {
  margin: 0 0 18px;
  color: var(--grey-700, #444);
  line-height: 1.7;
}
.services-list-body .btn-ghost {
  margin-top: 4px;
}
@media (max-width: 768px) {
  .services-list-item {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 16px;
  }
  .services-list-icon { width: 48px; height: 48px; border-radius: 12px; }
  .services-list-icon svg { width: 22px; height: 22px; }
  .services-list-body h3 { font-size: 1.25rem; }
}

/* ============================================
   Map embed (Contact page)
   ============================================ */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--grey-100);
  min-height: 380px;
  aspect-ratio: 4/3;
  position: relative;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 992px) {
  .map-embed { aspect-ratio: 16/10; min-height: 320px; }
}
