/*
Theme Name: Bathroom Remodeling Pros
Theme URI: https://bathroomremodelingmilwaukeewi.org
Author: Bathroom Remodeling Pros
Description: High-conversion authority site with scroll-storytelling for Milwaukee bathroom remodeling.
Version: 2.0.0
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --color-primary: #1C3557;
  --color-primary-dark: #142744;
  --color-primary-light: #2A4D7A;
  --color-accent: #E07B2A;
  --color-accent-dark: #C46820;
  --color-accent-light: #F08C3E;
  --color-bg: #F4F8FB;
  --color-white: #FFFFFF;
  --color-text: #1A1F2E;
  --color-text-muted: #5A6478;
  --color-border: #DDE3ED;
  --color-success: #2D7A4F;
  --color-danger: #C0392B;

  --shadow-sm: 0 1px 3px rgba(28,53,87,0.08);
  --shadow-md: 0 4px 16px rgba(28,53,87,0.10);
  --shadow-lg: 0 8px 32px rgba(28,53,87,0.12);
  --shadow-xl: 0 16px 48px rgba(28,53,87,0.18);

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 14px;

  --max-width: 1200px;
  --section-padding: 96px 0;
  --section-padding-mobile: 56px 0;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-accent); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; line-height: 1.05; color: var(--color-text); letter-spacing: -0.01em; }
h4, h5, h6 { font-family: 'Inter', sans-serif; font-weight: 600; line-height: 1.3; }

h1 { font-size: clamp(2.75rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.65; color: var(--color-text-muted); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-padding); position: relative; }
.section--bg { background: var(--color-bg); }
.section--dark { background: var(--color-primary); color: var(--color-white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: white; }
.section--accent { background: var(--color-accent); color: var(--color-white); }
.section--accent h1, .section--accent h2 { color: white; }

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

.text-center { text-align: center; }
.section-header { text-align: center; margin-bottom: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--color-text-muted); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS — progressive enhancement
   Content is visible by default. Only hidden when JS is loaded
   AND IntersectionObserver is supported AND user hasn't requested
   reduced motion. This guarantees content shows for SEO bots,
   screen readers, and no-JS users.
   ============================================================ */

/* Default: content is fully visible */
.reveal,
.reveal-stagger > * {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

/* Only hide reveals when JS has activated animation mode */
html.js-enabled .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(40px);
}
html.js-enabled .reveal-left:not(.visible) { transform: translateX(-40px); }
html.js-enabled .reveal-right:not(.visible) { transform: translateX(40px); }
html.js-enabled .reveal-scale:not(.visible) { transform: scale(0.92); }

html.js-enabled .reveal-stagger:not(.visible) > * {
  opacity: 0;
  transform: translateY(30px);
}
html.js-enabled .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
html.js-enabled .reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
html.js-enabled .reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
html.js-enabled .reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
html.js-enabled .reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 999;
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================================
   URGENCY BAR (top)
   ============================================================ */
.urgency-bar {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.9);
  padding: 8px 16px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  position: relative;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.urgency-bar strong { color: var(--color-accent-light); }
.urgency-bar .pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #2DC36B;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
.urgency-bar a { color: var(--color-accent-light); text-decoration: underline; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem;
  padding: 14px 28px; border-radius: var(--radius-md);
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.25s var(--ease); text-decoration: none; line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent); color: var(--color-white); border-color: var(--color-accent);
  box-shadow: 0 4px 14px rgba(224,123,42,0.3);
}
.btn-primary:hover {
  background: var(--color-accent-dark); border-color: var(--color-accent-dark);
  color: white; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(224,123,42,0.4);
}
.btn-secondary { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-secondary:hover { background: var(--color-primary); color: white; }
.btn-white { background: white; color: var(--color-primary); border-color: white; }
.btn-white:hover { background: var(--color-bg); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: white; color: var(--color-primary); border-color: white; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--color-primary);
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow 0.3s, padding 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(28,53,87,0.25); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: var(--max-width); margin: 0 auto;
}
.site-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem; font-weight: 700; color: white; line-height: 1;
}
.site-logo span { color: var(--color-accent); }

.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
  color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500;
  position: relative; padding: 4px 0;
}
.site-nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--color-accent);
  transition: width 0.3s var(--ease);
}
.site-nav a:hover { color: white; }
.site-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  color: white; font-weight: 600; font-size: 0.95rem;
  display: flex; align-items: center; gap: 8px;
}
.header-phone svg { color: var(--color-accent); }
.header-cta .btn { padding: 10px 20px; font-size: 0.9rem; }

.menu-toggle { display: none; color: white; padding: 8px; }

/* ============================================================
   HERO — PARALLAX
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  background: var(--color-primary);
  color: white;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
  will-change: transform;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,39,68,0.92) 0%, rgba(28,53,87,0.78) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 48px; align-items: center; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224,123,42,0.18); border: 1px solid rgba(224,123,42,0.5);
  color: var(--color-accent-light);
  font-size: 0.75rem; font-weight: 700; padding: 8px 16px;
  border-radius: 100px; margin-bottom: 24px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.hero h1 { color: white; margin-bottom: 24px; }
.hero h1 span {
  color: var(--color-accent);
  display: inline-block;
  position: relative;
}
.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 12px;
  background: rgba(224,123,42,0.3);
  z-index: -1;
}
.hero .lead { color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 560px; }

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

.hero-trust-items { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.875rem; color: rgba(255,255,255,0.85); font-weight: 500;
}
.hero-trust-item svg { color: var(--color-success); flex-shrink: 0; }

/* Hero quote form card */
.hero-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.hero-form-card::before {
  content: 'FREE';
  position: absolute; top: -14px; right: 28px;
  background: var(--color-accent); color: white;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 5px 12px; border-radius: 100px;
}
.hero-form-card h3 { color: var(--color-primary); font-size: 1.5rem; margin-bottom: 6px; }
.hero-form-card .form-sub { color: var(--color-text-muted); font-size: 0.875rem; margin-bottom: 24px; }

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 600; color: var(--color-text);
  margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.05em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--color-border); border-radius: var(--radius-md);
  font-family: inherit; font-size: 0.95rem; color: var(--color-text);
  background: white; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(28,53,87,0.1);
}
.form-submit { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; margin-top: 6px; }
.form-privacy { text-align: center; font-size: 0.75rem; color: var(--color-text-muted); margin-top: 12px; }

/* ============================================================
   STICKY CTA BAR (appears on scroll)
   ============================================================ */
.sticky-cta {
  position: fixed; bottom: -100px; left: 0; right: 0;
  background: white; box-shadow: 0 -4px 20px rgba(28,53,87,0.15);
  padding: 16px 24px; z-index: 95;
  transition: bottom 0.4s var(--ease-out);
  border-top: 3px solid var(--color-accent);
}
.sticky-cta.visible { bottom: 0; }
.sticky-cta-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.sticky-cta-text strong { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--color-primary); }
.sticky-cta-text span { display: block; font-size: 0.85rem; color: var(--color-text-muted); }
.sticky-cta-actions { display: flex; gap: 12px; }
@media (max-width: 768px) {
  .sticky-cta-text span { display: none; }
  .sticky-cta-text strong { font-size: 1rem; }
  .sticky-cta { padding: 12px 16px; }
  .sticky-cta-inner { gap: 12px; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: white; padding: 28px 0; border-bottom: 1px solid var(--color-border);
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center; gap: 40px;
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px; flex-wrap: wrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.9rem; color: var(--color-text);
}
.trust-badge .stars { color: #F5A623; letter-spacing: 1px; font-size: 0.95rem; }
.trust-badge .platform-name { font-weight: 600; color: var(--color-text-muted); font-size: 0.8rem; }

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-section { background: var(--color-primary); color: white; padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-label {
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ============================================================
   PROCESS TIMELINE (scroll-tells)
   ============================================================ */
.process-section { padding: var(--section-padding); }
.process-timeline {
  position: relative;
  max-width: 900px; margin: 0 auto;
}
.process-timeline::before {
  content: '';
  position: absolute; top: 50px; bottom: 50px; left: 50%;
  width: 2px; background: var(--color-border);
  transform: translateX(-50%);
}
.process-step {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  gap: 24px; align-items: center;
  margin-bottom: 48px; position: relative;
}
.process-step:last-child { margin-bottom: 0; }
.process-step-number {
  width: 64px; height: 64px;
  background: white; border: 3px solid var(--color-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.75rem; font-weight: 700; color: var(--color-accent);
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  position: relative; z-index: 2;
  transition: all 0.4s var(--ease-out);
}
.process-step.visible .process-step-number {
  background: var(--color-accent); color: white;
  transform: scale(1.1);
}
.process-step-content {
  background: white; padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.process-step-content h3 {
  font-size: 1.4rem; margin-bottom: 8px; color: var(--color-primary);
}
.process-step-content p { font-size: 0.95rem; color: var(--color-text-muted); }
.process-step:nth-child(odd) .process-step-content { text-align: right; }
.process-step:nth-child(even) > .process-step-content:first-child { visibility: hidden; }
.process-step:nth-child(odd) > div:last-child { visibility: hidden; }

@media (max-width: 768px) {
  .process-timeline::before { left: 32px; }
  .process-step { grid-template-columns: 64px 1fr; gap: 16px; }
  .process-step:nth-child(even) > .process-step-content:first-child,
  .process-step:nth-child(odd) > div:last-child { display: none; }
  .process-step-number { margin: 0; }
  .process-step:nth-child(odd) .process-step-content { text-align: left; }
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.service-card {
  background: white;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}
.service-card-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-img-wrap { overflow: hidden; }
.service-card-body { padding: 28px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.service-card-body p { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 20px; flex: 1; }
.service-card .btn { font-size: 0.875rem; padding: 10px 20px; align-self: flex-start; }

/* ============================================================
   BEFORE/AFTER INTERACTIVE SLIDER
   ============================================================ */
.ba-slider-section { background: var(--color-bg); }
.ba-slider {
  position: relative; max-width: 900px; margin: 0 auto;
  aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl);
  cursor: ew-resize;
  user-select: none;
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider .ba-after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.05s linear;
}
.ba-slider-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 4px; background: white;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}
.ba-slider-handle::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 56px; height: 56px;
  background: white; border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  display: flex;
}
.ba-slider-handle::after {
  content: '⇆';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.3rem; color: var(--color-primary); font-weight: bold;
  z-index: 4;
}
.ba-label {
  position: absolute; top: 16px;
  background: rgba(28,53,87,0.85); color: white;
  font-size: 0.75rem; font-weight: 700; padding: 6px 14px;
  border-radius: 4px; text-transform: uppercase; letter-spacing: 0.08em;
  z-index: 2;
}
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; background: var(--color-accent); }
.ba-instruction {
  text-align: center; margin-top: 16px;
  font-size: 0.85rem; color: var(--color-text-muted);
  font-weight: 500;
}

/* ============================================================
   WHY US PILLARS
   ============================================================ */
.pillar-item { display: flex; gap: 20px; align-items: flex-start; }
.pillar-icon {
  width: 56px; height: 56px;
  background: rgba(224,123,42,0.12); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent); flex-shrink: 0;
  transition: all 0.3s;
}
.pillar-item:hover .pillar-icon { background: var(--color-accent); color: white; transform: scale(1.05); }
.pillar-icon svg { width: 28px; height: 28px; }
.pillar-content h4 { font-size: 1.15rem; margin-bottom: 8px; color: var(--color-primary); }
.pillar-content p { font-size: 0.95rem; color: var(--color-text-muted); }

.why-us-image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl); aspect-ratio: 4/5;
  position: relative;
}
.why-us-image img { width: 100%; height: 100%; object-fit: cover; }
.why-us-image::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(28,53,87,0.6));
}
.why-us-image-overlay {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  color: white; z-index: 2;
}
.why-us-image-overlay strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 700;
  display: block; line-height: 1;
}
.why-us-image-overlay span { font-size: 0.85rem; }

/* ============================================================
   VIDEO TESTIMONIALS (9:16 UGC) — mockup-ready
   ============================================================ */
.video-section { background: white; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}
.video-card {
  aspect-ratio: 9/16;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background-color: #000;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  box-shadow: 0 12px 32px rgba(28,53,87,0.18);
}
.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(28,53,87,0.28);
}
.video-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
  transition: transform 0.3s, background 0.3s;
  z-index: 2;
}
.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--color-accent);
}
.video-play svg { width: 28px; height: 28px; color: var(--color-primary); margin-left: 4px; transition: color 0.3s; }
.video-card:hover .video-play svg { color: white; }

.video-caption {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  color: white; z-index: 2;
}
.video-caption-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.2rem;
  line-height: 1.1; margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.video-caption-loc {
  font-size: 0.8rem; opacity: 0.95;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.video-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(224,123,42,0.95); backdrop-filter: blur(8px);
  color: white; font-size: 0.65rem; font-weight: 700;
  padding: 5px 10px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.08em;
  z-index: 2;
  display: flex; align-items: center; gap: 5px;
}
.video-badge .red-dot { width: 6px; height: 6px; background: #ff3b30; border-radius: 50%; animation: pulse 2s infinite; }
.video-stars {
  position: absolute; top: 14px; right: 14px;
  color: #FFD23F; font-size: 0.78rem; letter-spacing: 1px;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.video-duration {
  position: absolute; bottom: 70px; right: 14px;
  background: rgba(0,0,0,0.7);
  color: white; font-size: 0.7rem; font-weight: 600;
  padding: 3px 8px; border-radius: 4px;
  z-index: 2;
}

/* ============================================================
   SMS QUOTE SECTION
   ============================================================ */
.sms-section { background: var(--color-bg); }
.sms-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px; align-items: center;
  background: white;
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto;
}
.sms-card::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(224,123,42,0.08) 0%, transparent 70%);
}
.sms-content { position: relative; z-index: 2; }
.sms-content h2 { margin-bottom: 16px; font-size: clamp(1.85rem, 4vw, 2.6rem); }
.sms-content p { color: var(--color-text-muted); font-size: 1.05rem; margin-bottom: 24px; }
.sms-feature { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; color: var(--color-text); }
.sms-feature svg { color: var(--color-success); flex-shrink: 0; }
.sms-cta { margin-top: 32px; }
.sms-number {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 2rem;
  color: var(--color-primary);
  background: var(--color-bg);
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px dashed var(--color-accent);
  transition: all 0.3s;
  margin-right: 16px;
}
.sms-number:hover { background: var(--color-accent); color: white; border-style: solid; }
.sms-note { font-size: 0.78rem; color: var(--color-text-muted); margin-top: 16px; }

.phone-mockup {
  width: 280px; height: 560px;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 40px;
  border: 6px solid #1a1a1a;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35), 0 8px 20px rgba(0,0,0,0.2);
}
.phone-mockup::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 26px;
  background: #1a1a1a;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone-screen {
  position: absolute; inset: 0;
  background: #f5f5f7;
  border-radius: 32px;
  padding: 52px 14px 14px;
  display: flex; flex-direction: column;
  gap: 7px;
  overflow: hidden;
}
.text-bubble {
  padding: 9px 13px;
  border-radius: 17px;
  font-size: 0.78rem;
  max-width: 80%;
  line-height: 1.4;
  word-wrap: break-word;
}
.text-bubble.from-them {
  background: #e5e5ea; color: #000;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.text-bubble.from-me {
  background: #34c759; color: white;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.text-bubble-img {
  background: linear-gradient(135deg, #1C3557, #2A4D7A);
  width: 140px; height: 90px;
  border-radius: 12px;
  align-self: flex-end;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
}
.text-time { font-size: 0.6rem; color: #8e8e93; text-align: center; margin: 6px 0 2px; }

@media (max-width: 768px) {
  .sms-card { grid-template-columns: 1fr; gap: 40px; padding: 40px 28px; }
  .phone-mockup { transform: scale(0.85); }
}

/* ============================================================
   PRESS / AWARDS STRIP
   ============================================================ */
.press-section {
  background: white;
  padding: 56px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.press-label {
  text-align: center;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}
.press-strip {
  display: flex;
  align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.press-logo {
  display: flex; align-items: center; justify-content: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: var(--color-text);
  filter: grayscale(1);
  opacity: 0.6;
  transition: all 0.35s;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.press-logo:hover { filter: grayscale(0); opacity: 1; transform: scale(1.05); }
.press-logo--houzz { font-size: 1.6rem; font-weight: 800; color: #4DBC15; font-family: 'Inter', sans-serif; letter-spacing: -0.04em; }
.press-logo--bhg { font-size: 1.1rem; font-style: italic; }
.press-logo--toh { font-size: 1.05rem; font-family: 'Inter', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.press-logo--angi { font-size: 1.6rem; font-weight: 900; color: #FF6153; font-family: 'Inter', sans-serif; letter-spacing: -0.04em; }
.press-logo--bbb { font-size: 1.6rem; font-weight: 900; color: #013E7C; font-family: 'Inter', sans-serif; letter-spacing: -0.04em; }
.press-logo--mke { font-size: 1.05rem; font-weight: 700; font-family: 'Inter', sans-serif; }

/* ============================================================
   LIVE CHAT WIDGET
   ============================================================ */
.chat-widget {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
}
.chat-bubble {
  width: 60px; height: 60px;
  background: var(--color-accent);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(28,53,87,0.3), 0 4px 12px rgba(224,123,42,0.4);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.chat-bubble:hover { transform: scale(1.08); }
.chat-bubble svg { width: 26px; height: 26px; }
.chat-bubble-dot {
  position: absolute; top: 2px; right: 2px;
  width: 14px; height: 14px;
  background: #34C759;
  border: 2px solid white;
  border-radius: 50%;
}
.chat-bubble-tip {
  position: absolute;
  right: 72px; top: 50%;
  transform: translateY(-50%);
  background: var(--color-primary-dark);
  color: white;
  font-size: 0.78rem; font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.chat-bubble-tip::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid var(--color-primary-dark);
}
.chat-widget:hover .chat-bubble-tip { opacity: 1; transform: translateY(-50%) translateX(-4px); }

.chat-panel {
  position: absolute;
  bottom: 76px; right: 0;
  width: 340px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(28,53,87,0.3);
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease-out);
  transform-origin: bottom right;
}
.chat-panel.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.chat-header {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: white;
  padding: 20px 22px;
  display: flex; align-items: center; gap: 12px;
}
.chat-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.chat-header-info strong { display: block; font-size: 1rem; font-weight: 700; }
.chat-header-status {
  font-size: 0.78rem; opacity: 0.92;
  display: flex; align-items: center; gap: 6px; margin-top: 3px;
}
.chat-status-dot {
  width: 8px; height: 8px;
  background: #34C759;
  border-radius: 50%;
}
.chat-close {
  margin-left: auto;
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.15); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; line-height: 1;
}
.chat-close:hover { background: rgba(255,255,255,0.25); }
.chat-body { padding: 20px; max-height: 360px; overflow-y: auto; }
.chat-msg {
  background: #f1f5f9;
  padding: 12px 14px;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  font-size: 0.875rem;
  margin-bottom: 16px;
  line-height: 1.5;
}
.chat-quick { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.chat-action {
  background: white;
  border: 1.5px solid var(--color-border);
  padding: 12px 14px;
  border-radius: 10px;
  text-align: left;
  font-size: 0.875rem; font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.chat-action:hover {
  border-color: var(--color-accent);
  background: rgba(224,123,42,0.06);
  color: var(--color-accent-dark);
  transform: translateX(2px);
}
.chat-action svg { color: var(--color-accent); flex-shrink: 0; }
.chat-footer {
  padding: 14px 20px;
  background: var(--color-bg);
  font-size: 0.7rem; color: var(--color-text-muted);
  text-align: center;
}

/* Move floating call to bottom-LEFT to avoid colliding with chat */
.floating-call { right: auto !important; left: 20px; bottom: 24px !important; }
@media (max-width: 768px) {
  .chat-widget { bottom: 16px; right: 16px; }
  .chat-panel { width: calc(100vw - 32px); right: -8px; }
}

/* ============================================================
   GUARANTEES SECTION — 6 stamps
   ============================================================ */
.guarantees-section { background: var(--color-bg); position: relative; }
.guarantees-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(28,53,87,0.04) 0, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(224,123,42,0.05) 0, transparent 50%);
  pointer-events: none;
}
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.guarantee-card {
  background: white;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 28px 28px;
  text-align: center;
  position: relative;
  transition: all 0.35s var(--ease-out);
  overflow: hidden;
}
.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.guarantee-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.guarantee-card:hover::before { transform: scaleX(1); }

.guarantee-stamp {
  width: 96px; height: 96px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(28,53,87,0.2);
  transition: transform 0.4s var(--ease-out);
}
.guarantee-card:hover .guarantee-stamp { transform: rotate(-6deg) scale(1.05); }
.guarantee-stamp::before {
  content: '';
  position: absolute; inset: 4px;
  border: 2px dashed rgba(255,255,255,0.4);
  border-radius: 50%;
}
.guarantee-stamp svg { width: 40px; height: 40px; color: var(--color-accent-light); position: relative; z-index: 2; }
.guarantee-stamp-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--color-accent-light);
  line-height: 1;
  position: relative; z-index: 2;
}
.guarantee-stamp-suffix {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 2px;
  position: relative; z-index: 2;
}

.guarantee-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.15;
}
.guarantee-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   CREDENTIALS BAR — industry stamps
   ============================================================ */
.credentials-bar {
  background: white;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 32px 0;
}
.credentials-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
}
.credentials-label {
  text-align: center;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}
.credential-badge {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 12px 8px;
  border-radius: var(--radius-md);
  transition: all 0.25s;
  cursor: default;
  filter: grayscale(0.3);
  opacity: 0.85;
}
.credential-badge:hover {
  filter: grayscale(0); opacity: 1;
  background: var(--color-bg);
  transform: translateY(-3px);
}
.credential-badge-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  flex-shrink: 0;
}
.credential-badge-icon svg { width: 28px; height: 28px; color: var(--color-primary); }
.credential-name {
  font-size: 0.7rem; font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.credential-sub {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ============================================================
   RISK REVERSAL BLOCK (inline)
   ============================================================ */
.risk-reversal {
  background: rgba(45,122,79,0.06);
  border: 1px solid rgba(45,122,79,0.2);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.risk-reversal svg { color: var(--color-success); flex-shrink: 0; margin-top: 2px; }
.risk-reversal p {
  font-size: 0.78rem;
  color: var(--color-text);
  line-height: 1.5;
  margin: 0;
}
.risk-reversal strong { color: var(--color-success); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: white; border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg); margin-bottom: 12px;
  overflow: hidden; transition: all 0.3s;
}
.faq-item:hover { border-color: var(--color-primary); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left; font-size: 1.05rem; font-weight: 600; color: var(--color-text);
  background: white; cursor: pointer;
}
.faq-question::after {
  content: '+';
  font-size: 1.6rem; font-weight: 300; color: var(--color-accent);
  transition: transform 0.3s; flex-shrink: 0; margin-left: 16px;
  line-height: 1;
}
.faq-item.open .faq-question::after { content: '−'; transform: rotate(0); }
.faq-answer {
  max-height: 0; overflow: hidden;
  padding: 0 24px;
  color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.7;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 24px; }

/* ============================================================
   COST CALCULATOR
   ============================================================ */
.calc-section { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%); color: white; }
.calc-section h2 { color: white; }
.calc-section .section-header p { color: rgba(255,255,255,0.85); }
.calculator {
  background: white; color: var(--color-text);
  border-radius: var(--radius-xl); padding: 40px;
  max-width: 720px; margin: 0 auto;
  box-shadow: var(--shadow-xl);
}
.calc-row { margin-bottom: 24px; }
.calc-row label {
  display: block; font-weight: 600;
  margin-bottom: 12px; color: var(--color-text);
  font-size: 0.95rem;
}
.calc-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.calc-option {
  padding: 14px; border: 2px solid var(--color-border);
  border-radius: var(--radius-md); background: white;
  cursor: pointer; transition: all 0.2s;
  font-size: 0.9rem; font-weight: 500; color: var(--color-text);
  text-align: center;
}
.calc-option:hover { border-color: var(--color-accent-light); }
.calc-option.selected {
  border-color: var(--color-accent);
  background: rgba(224,123,42,0.08);
  color: var(--color-accent-dark);
  font-weight: 600;
}
.calc-result {
  margin-top: 32px; padding: 28px;
  background: var(--color-bg); border-radius: var(--radius-lg);
  text-align: center;
}
.calc-result-label {
  font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--color-text-muted);
  margin-bottom: 8px;
}
.calc-result-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.75rem; font-weight: 700;
  color: var(--color-primary); line-height: 1; margin-bottom: 8px;
}
.calc-result-note { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 16px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: white; border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s; position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '"';
  position: absolute; top: 12px; right: 24px;
  font-family: Georgia, serif;
  font-size: 4.5rem; color: var(--color-accent);
  opacity: 0.2; line-height: 1;
}
.testimonial-stars { color: #F5A623; margin-bottom: 14px; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--color-text); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem;
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; color: var(--color-text); }
.testimonial-location { font-size: 0.8rem; color: var(--color-text-muted); }
.testimonial-verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.7rem; color: var(--color-success);
  font-weight: 600; margin-top: 2px;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.area-link {
  display: block; background: white;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md); padding: 14px 16px;
  font-size: 0.875rem; font-weight: 500; color: var(--color-text);
  transition: all 0.2s; text-align: center;
}
.area-link:hover {
  border-color: var(--color-accent); background: rgba(224,123,42,0.05);
  color: var(--color-accent-dark); transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   FINAL CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--color-accent);
  background-image: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; left: -10%;
  width: 70%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.cta-banner h2 { color: white; margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.92); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   SERVICE PAGE TEMPLATE
   ============================================================ */
.svc-hero {
  background: var(--color-primary);
  color: white;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.svc-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.2; z-index: 0;
}
.svc-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,39,68,0.6) 0%, rgba(28,53,87,0.85) 100%);
}
.svc-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto; padding: 0 24px;
}

.breadcrumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.75);
  margin-bottom: 24px; flex-wrap: wrap;
}
.breadcrumbs a { color: rgba(255,255,255,0.85); }
.breadcrumbs a:hover { color: var(--color-accent-light); }
.breadcrumbs .sep { opacity: 0.5; }
.breadcrumbs .current { color: var(--color-accent-light); font-weight: 500; }

.svc-hero h1 { color: white; margin-bottom: 18px; max-width: 820px; }
.svc-hero .lead { color: rgba(255,255,255,0.88); max-width: 740px; margin-bottom: 32px; }

.svc-hero-trust {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.svc-hero-trust .trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  padding: 7px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 500;
  backdrop-filter: blur(10px);
}
.svc-hero-trust .trust-pill svg { color: var(--color-accent-light); }

.svc-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Service page layout */
.svc-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  align-items: start;
}
.svc-content { min-width: 0; }
.svc-sidebar {
  position: sticky; top: 90px;
  display: flex; flex-direction: column; gap: 24px;
}

.svc-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-top: 48px; margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-border);
  position: relative;
}
.svc-content h2:first-child { margin-top: 0; }
.svc-content h2::before {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 60px; height: 2px;
  background: var(--color-accent);
}
.svc-content h3 {
  font-size: 1.3rem;
  margin-top: 32px; margin-bottom: 12px;
  color: var(--color-primary);
}
.svc-content p {
  font-size: 1rem; line-height: 1.75;
  color: var(--color-text); margin-bottom: 18px;
}
.svc-content ul, .svc-content ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}
.svc-content ul li {
  padding: 10px 0 10px 36px;
  position: relative;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  line-height: 1.6;
}
.svc-content ul li:last-child { border-bottom: 0; }
.svc-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 22px; height: 22px;
  background: var(--color-accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.svc-content ul li strong { color: var(--color-primary); font-weight: 600; }
.svc-content a:not(.btn) {
  color: var(--color-accent-dark);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
}
.svc-content a:not(.btn):hover { color: var(--color-primary); }

/* Pricing tiers card */
.pricing-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin: 32px 0;
}
.pricing-tier {
  background: white;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  position: relative;
  transition: all 0.3s var(--ease-out);
}
.pricing-tier:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pricing-tier--popular {
  border-color: var(--color-accent);
  border-width: 2px;
  background: linear-gradient(180deg, rgba(224,123,42,0.04) 0%, white 100%);
}
.pricing-tier--popular::before {
  content: 'MOST POPULAR';
  position: absolute; top: -10px; right: 14px;
  background: var(--color-accent);
  color: white;
  font-size: 0.65rem; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  letter-spacing: 0.06em;
}
.pricing-tier-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.pricing-tier-range {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 14px;
  line-height: 1;
}
.pricing-tier-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Inline images in content */
.svc-content figure {
  margin: 32px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.svc-content figure img { width: 100%; height: auto; display: block; }
.svc-content figcaption {
  font-size: 0.8rem; color: var(--color-text-muted);
  padding: 10px 16px; background: var(--color-bg);
  font-style: italic;
}

.svc-content .info-callout {
  background: rgba(28,53,87,0.04);
  border-left: 4px solid var(--color-accent);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin: 24px 0;
  font-size: 0.95rem;
  line-height: 1.7;
}
.svc-content .info-callout strong { color: var(--color-primary); }

/* Sidebar quote card */
.sidebar-quote-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-accent);
  position: relative;
}
.sidebar-quote-card::before {
  content: '🎯';
  position: absolute; top: -12px; left: 24px;
  background: var(--color-accent);
  color: white;
  font-size: 0.7rem; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  letter-spacing: 0.06em;
}
.sidebar-quote-card h3 {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.sidebar-quote-card .form-sub {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 18px;
}

.sidebar-cta-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: white;
  text-align: center;
}
.sidebar-cta-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 8px;
}
.sidebar-cta-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

.sidebar-trust-list {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
}
.sidebar-trust-list h4 {
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.sidebar-trust-list ul { padding: 0; margin: 0; }
.sidebar-trust-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem;
  padding: 6px 0;
  color: var(--color-text);
}
.sidebar-trust-list li svg { color: var(--color-success); flex-shrink: 0; }

/* Related services / locations */
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 24px;
}
.related-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: all 0.25s;
  text-decoration: none;
  color: var(--color-text);
  display: block;
}
.related-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  color: var(--color-primary);
}
.related-card strong { display: block; font-size: 0.95rem; margin-bottom: 4px; color: var(--color-primary); }
.related-card span { font-size: 0.8rem; color: var(--color-text-muted); }
.related-card span::after { content: ' →'; color: var(--color-accent); }

@media (max-width: 1024px) {
  .svc-layout { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; flex-direction: column; }
  .pricing-tiers { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .svc-layout { padding: 48px 0; }
  .svc-layout > * { padding-left: 24px; padding-right: 24px; }
  .related-grid { grid-template-columns: 1fr; }
  .pricing-tiers { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--color-primary-dark); color: rgba(255,255,255,0.75); padding: 64px 0 24px; }
.footer-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-brand .site-logo { font-size: 1.4rem; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.9rem; line-height: 1.65; margin-bottom: 16px; }
.footer-col h4 {
  color: white; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px;
}
.footer-col a { display: block; color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--color-accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  max-width: var(--max-width); margin: 0 auto; padding-left: 24px; padding-right: 24px;
  display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem;
  flex-wrap: wrap; gap: 16px;
}

/* ============================================================
   FLOATING MOBILE CALL BUTTON
   ============================================================ */
.floating-call {
  display: none;
  position: fixed; bottom: 80px; right: 20px;
  width: 60px; height: 60px;
  background: var(--color-accent);
  color: white; border-radius: 50%;
  box-shadow: 0 6px 20px rgba(224,123,42,0.5);
  align-items: center; justify-content: center;
  z-index: 90;
  animation: pulseCall 2s infinite;
}
@keyframes pulseCall {
  0%, 100% { box-shadow: 0 6px 20px rgba(224,123,42,0.5), 0 0 0 0 rgba(224,123,42,0.5); }
  50%      { box-shadow: 0 6px 20px rgba(224,123,42,0.5), 0 0 0 16px rgba(224,123,42,0); }
}
@media (max-width: 768px) { .floating-call { display: flex; } }

/* ============================================================
   EXIT INTENT MODAL
   ============================================================ */
.exit-modal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20,39,68,0.7);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s;
}
.exit-modal.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.exit-modal-content {
  background: white; border-radius: var(--radius-xl);
  padding: 48px 40px; max-width: 480px; width: 100%;
  text-align: center; position: relative;
  animation: slideUp 0.4s var(--ease-out);
}
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.exit-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--color-text-muted);
  border-radius: 50%; transition: background 0.2s;
}
.exit-modal-close:hover { background: var(--color-bg); }
.exit-modal h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; color: var(--color-primary); margin-bottom: 12px;
}
.exit-modal p { color: var(--color-text-muted); margin-bottom: 24px; }
.exit-modal .form-group { text-align: left; }

/* ============================================================
   FORM SUCCESS STATE
   ============================================================ */
#brp-form-success { text-align: center; padding: 32px 0; }
#brp-form-success .checkmark {
  width: 64px; height: 64px;
  background: var(--color-success); border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  animation: bounceIn 0.5s var(--ease-out);
}
@keyframes bounceIn {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
#brp-form-success strong { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; color: var(--color-primary); display: block; margin-bottom: 8px; }
#brp-form-success p { font-size: 0.9rem; color: var(--color-text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { grid-template-columns: 1fr; }
  .why-us-image { display: none; }
  .guarantees-grid { grid-template-columns: repeat(2, 1fr); }
  .credentials-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .video-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 720px; }
  .press-strip { gap: 32px; }
}
@media (max-width: 768px) {
  :root { --section-padding: var(--section-padding-mobile); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .guarantees-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .video-grid { grid-template-columns: 1fr; gap: 24px; max-width: 320px; }
  .press-strip { gap: 24px; }
  .press-logo { font-size: 0.95rem !important; }
  .press-logo--houzz, .press-logo--angi, .press-logo--bbb { font-size: 1.3rem !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .site-nav { display: none; }
  .menu-toggle { display: flex; align-items: center; }
  .header-phone { display: none; }
  .hero-form-card { padding: 24px; }
  .urgency-bar { font-size: 0.75rem; padding: 8px 12px; }
  .calculator { padding: 24px; }
  .calc-options { grid-template-columns: 1fr 1fr; }
  .ba-slider { aspect-ratio: 4/3; }
  body { padding-bottom: 80px; }
  .sticky-cta.visible + body { padding-bottom: 100px; }
}
