/* ============================================================
   WATKINS PLUMBING — Proximity Plumbing Inspired
   Conversion-focused. Trust-heavy. Modern & Fresh.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #00703C;
  --brand-light: #009950;
  --brand-dark: #005A30;
  --brand-glow: rgba(0, 112, 60, 0.15);
  --navy: #1B2A4A;
  --navy-light: #243556;
  --navy-dark: #111D35;
  --white: #ffffff;
  --off-white: #F8FAFB;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green-50: #ecfdf5;
  --green-100: #d1fae5;
  --green-400: #34d399;
  --green-500: #10b981;
  --yellow: #fbbf24;
  --yellow-dark: #f59e0b;
  --orange: #f97316;
  --red: #ef4444;
  --blue: #3b82f6;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.03);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.04);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
ul, ol { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p { color: var(--gray-600); line-height: 1.7; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--brand); margin-bottom: 10px;
}
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--brand); }

.text-gradient {
  background: linear-gradient(135deg, var(--brand) 0%, var(--green-500) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-white { color: var(--white) !important; }
.text-center { text-align: center; }

/* === DARK SECTION TEXT SAFETY — no dark text on dark backgrounds === */
.page-hero h1, .page-hero h2, .page-hero h3, .page-hero h4,
.cta-section h1, .cta-section h2, .cta-section h3,
.process-section h1, .process-section h2, .process-section h3, .process-section h4,
.hero h1, .hero h2, .hero h3 { color: var(--white); }
.page-hero p, .cta-section p, .process-section p { color: rgba(255,255,255,0.75); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; font-size: 0.9rem; font-weight: 700; border: none;
  border-radius: var(--radius); cursor: pointer; transition: all 0.25s ease;
  font-family: inherit; line-height: 1; text-transform: uppercase; letter-spacing: 0.04em;
}
.btn-brand { background: var(--brand); color: var(--white); box-shadow: 0 4px 12px rgba(0,112,60,0.25); }
.btn-brand:hover { background: var(--brand-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,112,60,0.3); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--navy); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; border: 2px solid var(--gray-200); color: var(--gray-700); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.4); color: var(--white); }
.btn-outline-white:hover { border-color: var(--green-400); color: var(--green-400); }
/* Outline on dark backgrounds */
.page-hero .btn-outline,
.hero .btn-outline,
.process-section .btn-outline,
.cta-section .btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.page-hero .btn-outline:hover,
.hero .btn-outline:hover,
.process-section .btn-outline:hover,
.cta-section .btn-outline:hover { border-color: var(--green-400); color: var(--green-400); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: #ea580c; transform: translateY(-1px); }
.btn-lg { padding: 16px 32px; font-size: 0.95rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 10px 18px; font-size: 0.8rem; }
.btn-full { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* === STATUS BAR (Proximity-style) === */
.status-bar {
  background: var(--white); border-bottom: 1px solid var(--gray-200);
  padding: 10px 0; font-size: 0.85rem;
}
.status-bar .container {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.status-live {
  display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--gray-800);
}
.status-dot {
  width: 10px; height: 10px; background: var(--green-500); border-radius: 50%;
  animation: statusPulse 2s infinite;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}
.status-ctas { display: flex; gap: 10px; }
.status-cta {
  display: flex; align-items: center; gap: 6px; padding: 6px 14px;
  background: var(--green-50); border: 1px solid var(--green-100);
  border-radius: var(--radius-full); font-weight: 600; font-size: 0.82rem; color: var(--brand);
  transition: all 0.2s;
}
.status-cta:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }
.status-cta svg { width: 14px; height: 14px; }

/* === HEADER === */
.header {
  background: var(--navy); padding: 14px 0; position: sticky; top: 0; z-index: 1000;
}
.header .container { display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 500; font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.nav a:hover { color: var(--white); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone { color: var(--white); font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; gap: 6px; }
.header-phone svg { width: 16px; height: 16px; color: var(--green-400); }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* === HERO === */
.hero {
  position: relative; padding: 100px 0 110px; overflow: hidden;
  background-size: cover; background-position: right center;
  background-repeat: no-repeat;
  color: var(--white);
  min-height: 600px; display: flex; align-items: center;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(
    to right,
    rgba(15,15,15,0.88) 0%,
    rgba(25,25,25,0.72) 40%,
    rgba(35,35,35,0.35) 70%,
    rgba(40,40,40,0.18) 100%
  );
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; max-width: 780px; margin-left: max(24px, calc((100% - 1200px)/2)); margin-right: auto; }
.hero-content--full { text-align: left; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 8px 16px; border-radius: var(--radius-full);
  font-size: 0.78rem; font-weight: 600; margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 16px; font-size: 3rem; line-height: 1.15; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero h1 .text-gradient { -webkit-text-fill-color: var(--green-400); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 14px; line-height: 1.7; max-width: 620px; }
.hero-offer {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,112,60,0.35); border: 1px solid rgba(0,112,60,0.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 10px 20px; border-radius: var(--radius); margin-bottom: 32px;
  font-weight: 700; font-size: 0.9rem; color: var(--green-400);
}
.hero-offer--cta {
  text-decoration: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hero-offer--cta:hover { background: rgba(0,112,60,0.55); transform: translateY(-1px); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust-row { display: flex; align-items: stretch; gap: 16px; flex-wrap: wrap; }
.hero-trust-row--compact { gap: 10px; align-items: center; }
.hero-stat-card {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 14px 20px; border-radius: var(--radius-lg);
  display: flex; align-items: center; gap: 10px;
}
.hero-stat-mini {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 6px 12px; border-radius: var(--radius); white-space: nowrap;
}
.mini-num { font-weight: 900; color: var(--green-400); font-size: 0.8rem; }
.mini-stars { color: var(--yellow); font-size: 0.7rem; letter-spacing: 0.5px; }
.card-stat-num { font-size: 1.8rem; font-weight: 900; color: var(--green-400); line-height: 1; }
.card-stat-text { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.3; }
.google-badge { display: flex; flex-direction: column; gap: 2px; }
.google-badge .stars { color: var(--yellow); font-size: 0.9rem; letter-spacing: 1px; }
.google-badge .rating-text { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.google-badge .rating-number { font-weight: 800; color: var(--white); font-size: 0.95rem; }
.availability-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 600; color: var(--green-400);
}

/* === MARQUEE === */
.marquee-wrap {
  overflow: hidden; background: var(--brand); padding: 12px 0; white-space: nowrap;
}
.marquee-wrap.navy { background: var(--navy); }
.marquee-track {
  display: inline-flex; animation: marquee 30s linear infinite;
}
.marquee-track .marquee-item,
.marquee-track span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 32px; font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--white);
}
.marquee-item .sep { width: 6px; height: 6px; background: rgba(255,255,255,0.4); border-radius: 50%; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === VALUE PROPS === */
.value-props { padding: 80px 0; background: var(--white); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s ease;
  position: relative;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--brand); }
.value-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--brand); transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.value-card:hover::after { transform: scaleX(1); }
.value-card-img { height: 180px; overflow: hidden; }
.value-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.value-card:hover .value-card-img img { transform: scale(1.05); }
.value-card-body { padding: 24px; }
.value-card h3 { margin-bottom: 6px; }
.value-card p { font-size: 0.9rem; margin-bottom: 14px; }

/* === PERSONAL MESSAGE === */
.message-section { padding: 80px 0; background: var(--off-white); }
.message-card {
  max-width: 800px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 48px; box-shadow: var(--shadow-md);
}
.message-card .greeting { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.message-card p { margin-bottom: 14px; font-size: 0.95rem; }
.message-signature { margin-top: 24px; }
.message-signature strong { color: var(--navy); font-size: 1.05rem; display: block; }
.message-signature span { color: var(--gray-500); font-size: 0.85rem; }

/* === SERVICES SECTION === */
.services-section { padding: 80px 0; }
.services-section.bg-gray { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s ease;
  text-decoration: none; display: block;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand); }
.service-card-img { height: 180px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-tag {
  position: absolute; top: 10px; left: 10px; background: var(--brand); color: var(--white);
  padding: 4px 10px; border-radius: var(--radius-full); font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
}
.service-card-body { padding: 20px; }
.service-card h3 { margin-bottom: 6px; font-size: 1.1rem; }
.service-card p { font-size: 0.88rem; margin-bottom: 12px; color: var(--gray-500); }
.service-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--brand); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em;
}
.service-card:hover .service-link { gap: 8px; }
.service-link svg { width: 14px; height: 14px; }

/* === PROCESS STEPS === */
.process-section { padding: 80px 0; background: var(--navy); color: var(--white); }
.process-section h2, .process-section h3, .process-section .section-label { color: var(--white); }
.process-section .section-label::before { background: var(--green-400); }
.process-section p { color: rgba(255,255,255,0.7); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.process-step { text-align: center; }
.process-num {
  width: 48px; height: 48px; background: rgba(0,112,60,0.3); border: 2px solid var(--brand);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; margin: 0 auto 14px; color: var(--green-400);
}
.process-step h4 { color: var(--white); margin-bottom: 6px; font-size: 0.95rem; }
.process-step p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* === TRUST BADGES === */
.trust-section { padding: 40px 0; background: var(--white); border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-logos img { height: 45px; width: auto; filter: grayscale(40%); opacity: 0.7; transition: all 0.2s; }
.trust-logos img:hover { filter: grayscale(0%); opacity: 1; }

/* === TESTIMONIALS === */
.testimonials-section { padding: 80px 0; background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px; transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); border-color: var(--green-100); }
.testimonial-stars { color: var(--yellow); font-size: 0.95rem; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 0.92rem; line-height: 1.7; color: var(--gray-600); margin-bottom: 14px; font-style: italic; }
.testimonial-footer { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 36px; height: 36px; background: var(--green-50); border: 2px solid var(--green-100);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.75rem; color: var(--brand);
}
.testimonial-name { font-weight: 700; font-size: 0.85rem; color: var(--gray-800); }
.testimonial-source { font-size: 0.75rem; color: var(--gray-400); }

/* === GUARANTEE === */
.guarantee-section { padding: 60px 0; background: var(--white); }
.guarantee-card {
  max-width: 850px; margin: 0 auto; display: flex; align-items: center; gap: 32px;
  background: linear-gradient(135deg, var(--green-50) 0%, var(--white) 100%);
  border: 2px solid var(--green-100); border-radius: var(--radius-xl); padding: 40px;
}
.guarantee-icon {
  width: 80px; height: 80px; min-width: 80px; background: var(--brand); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
  box-shadow: 0 4px 14px rgba(0,112,60,0.25);
}
.guarantee-card h3 { margin-bottom: 6px; }
.guarantee-card p { font-size: 0.92rem; }

/* === SERVICE AREAS === */
.areas-section { padding: 60px 0; background: var(--off-white); }
.areas-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.area-pill {
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 6px 16px; border-radius: var(--radius-full);
  font-size: 0.82rem; font-weight: 600; color: var(--gray-600); transition: all 0.2s;
}
.area-pill:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }

/* === LEAD MAGNET / EMAIL CAPTURE === */
.lead-capture {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  color: var(--white);
}
.lead-capture .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.lead-capture h3 { color: var(--white); margin-bottom: 4px; }
.lead-capture p { color: rgba(255,255,255,0.8); font-size: 0.92rem; }
.lead-capture form { display: flex; gap: 8px; }
.lead-capture input[type="email"] {
  padding: 12px 16px; border: 2px solid rgba(255,255,255,0.3); border-radius: var(--radius);
  background: rgba(255,255,255,0.1); color: var(--white); font-size: 0.9rem; width: 280px;
  font-family: inherit; backdrop-filter: blur(4px);
}
.lead-capture input::placeholder { color: rgba(255,255,255,0.5); }
.lead-capture input:focus { outline: none; border-color: var(--white); background: rgba(255,255,255,0.2); }

/* === DISCOUNT POPUP === */
.popup-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 9999; align-items: center; justify-content: center; padding: 24px;
}
.popup-overlay.active { display: flex; }
.popup-card {
  background: var(--white); border-radius: var(--radius-xl); max-width: 440px; width: 100%;
  padding: 40px; text-align: center; position: relative; box-shadow: var(--shadow-xl);
}
.popup-close {
  position: absolute; top: 12px; right: 16px; background: none; border: none;
  font-size: 1.5rem; color: var(--gray-400); cursor: pointer;
}
.popup-close:hover { color: var(--gray-800); }
.popup-badge {
  display: inline-block; background: var(--orange); color: var(--white);
  padding: 6px 16px; border-radius: var(--radius-full); font-weight: 800; font-size: 1.1rem; margin-bottom: 16px;
}
.popup-card h3 { margin-bottom: 8px; }
.popup-card > p { font-size: 0.9rem; margin-bottom: 20px; }
.popup-form .form-group { margin-bottom: 12px; }
.popup-form input {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); font-family: inherit; font-size: 0.9rem;
}
.popup-form input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-glow); }

/* === CTA SECTION === */
.cta-section {
  padding: 80px 0; background: var(--navy); color: var(--white);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,112,60,0.15) 0%, transparent 60%); border-radius: 50%;
}
.cta-section h2 { color: var(--white); margin-bottom: 12px; position: relative; z-index: 2; }
.cta-section p { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 500px; margin: 0 auto 28px; position: relative; z-index: 2; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* === FAQ ACCORDION === */
.faq-section { padding: 80px 0; }
.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%; background: none; border: none; padding: 18px 0; font-family: inherit;
  font-size: 1rem; font-weight: 600; color: var(--navy); text-align: left;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-question:hover { color: var(--brand); }
.faq-icon { font-size: 1.3rem; transition: transform 0.3s; color: var(--brand); flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 0 18px; font-size: 0.92rem; color: var(--gray-500); line-height: 1.7; }

/* === CONTACT FORM === */
.form-section { padding: 80px 0; background: var(--off-white); }
.form-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-info h2 { margin-bottom: 12px; }
.form-info > p { margin-bottom: 24px; }
.form-benefits {}
.form-benefit { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.form-benefit-icon {
  width: 36px; height: 36px; min-width: 36px; background: var(--green-50);
  border: 1px solid var(--green-100); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.form-benefit h4 { margin-bottom: 2px; font-size: 0.9rem; }
.form-benefit p { font-size: 0.82rem; color: var(--gray-500); }
.contact-details-block {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 16px; margin-top: 20px;
}
.contact-details-block p { font-size: 0.85rem; margin-bottom: 4px; }
.contact-details-block strong { color: var(--navy); }
.contact-details-block a { color: var(--brand); font-weight: 600; }

.form-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow-lg);
}
.form-card h3 { text-align: center; margin-bottom: 4px; font-size: 1.2rem; }
.form-subtitle { text-align: center; color: var(--gray-500); font-size: 0.85rem; margin-bottom: 20px; }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-weight: 600; font-size: 0.82rem; margin-bottom: 4px; color: var(--gray-700); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; background: var(--gray-50);
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  color: var(--gray-800); font-size: 0.9rem; font-family: inherit; transition: all 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-glow); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 70px; }
.form-group select { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-privacy { text-align: center; font-size: 0.75rem; color: var(--gray-400); margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-privacy svg { width: 14px; height: 14px; min-width: 14px; flex-shrink: 0; }

/* === FOOTER === */
.footer { background: var(--navy-dark); padding: 56px 0 24px; color: rgba(255,255,255,0.5); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand img { height: 34px; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 10px; }
.footer-brand .license { color: var(--green-400); font-weight: 700; font-size: 0.82rem; }
.footer h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; color: rgba(255,255,255,0.7); }
.footer ul li { margin-bottom: 6px; }
.footer ul a { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer ul a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; margin-bottom: 8px; }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--green-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.78rem; }
.footer-bottom a { color: var(--green-400); }

/* === MOBILE STICKY BAR === */
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: var(--navy); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 8px 0;
}
.mobile-bar .container { display: flex; justify-content: space-around; }
.mobile-bar-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  color: rgba(255,255,255,0.7); font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; padding: 4px 12px;
}
.mobile-bar-item svg { width: 20px; height: 20px; }
.mobile-bar-item:hover, .mobile-bar-item.active { color: var(--green-400); }

/* === SERVICE PAGE HERO (with background image) === */
.page-hero {
  padding: 70px 0 80px; color: var(--white);
  position: relative; overflow: hidden;
  background-size: cover; background-position: center center;
  background-repeat: no-repeat; background-color: var(--navy);
  min-height: 380px; display: flex; align-items: center;
}
.page-hero .hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(
    to right,
    rgba(15,15,15,0.90) 0%,
    rgba(25,25,25,0.78) 40%,
    rgba(35,35,35,0.50) 75%,
    rgba(40,40,40,0.35) 100%
  );
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.5); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero h1 { color: var(--white); margin-bottom: 10px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 600px; margin-bottom: 20px; }
.page-hero .hero-offer { margin-bottom: 20px; }
.page-hero .hero-ctas .btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.page-hero .hero-ctas .btn-outline:hover { border-color: var(--green-400); color: var(--green-400); }
.page-hero .hero-trust-row .google-badge .rating-text,
.page-hero .hero-trust-row .card-stat-text { color: rgba(255,255,255,0.8); }
.page-hero .hero-trust-row .rating-number,
.page-hero .hero-trust-row .card-stat-num { color: var(--white); }

/* === SERVICE PAGE CONTENT === */
.service-content { padding: 60px 0; }
.service-content .container { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.content-main h2 { margin-bottom: 12px; margin-top: 32px; }
.content-main h2:first-child { margin-top: 0; }
.content-main p { margin-bottom: 14px; }
.content-main ul { margin-bottom: 14px; padding-left: 0; }
.content-main ul li {
  padding: 6px 0 6px 24px; position: relative; color: var(--gray-600); font-size: 0.92rem;
}
.content-main ul li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; background: var(--brand); border-radius: 50%;
}

/* Sidebar */
.sidebar {}
.sidebar-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; box-shadow: var(--shadow-sm);
}
.sidebar-card h4 { margin-bottom: 10px; font-size: 1rem; }
.sidebar-card p { font-size: 0.88rem; margin-bottom: 12px; }
.sidebar-card .btn { font-size: 0.82rem; }
.sidebar-services a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--gray-100);
  font-size: 0.88rem; font-weight: 500; color: var(--gray-700);
}
.sidebar-services a:last-child { border-bottom: none; }
.sidebar-services a:hover { color: var(--brand); }
.sidebar-services a svg { width: 14px; height: 14px; color: var(--gray-400); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero .container { margin-left: auto; max-width: 100%; }
  .hero-content--full { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-trust-row { justify-content: center; }
  .value-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-content .container { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
}

@media (max-width: 768px) {
  .status-bar .container { justify-content: center; text-align: center; }
  .status-ctas { display: none; }
  .nav { display: none; }
  .mobile-menu-btn { display: block; }
  .header-actions .btn { display: none; }
  .nav.active {
    display: flex; flex-direction: column; position: fixed;
    top: 68px; left: 0; right: 0; background: var(--navy);
    padding: 20px 24px; z-index: 999; gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .hero { padding: 48px 0 60px; min-height: 420px; background-position: center center; }
  .hero h1 { font-size: 2.2rem; }
  .hero-offer { font-size: 0.75rem; padding: 8px 14px; }
  .hero-stat-card { padding: 10px 14px; }
  .card-stat-num { font-size: 1.4rem; }
  .hero-trust-row--compact { flex-wrap: nowrap; justify-content: center; gap: 6px; }
  .hero-stat-mini { font-size: 0.6rem; padding: 5px 8px; gap: 3px; }
  .mini-num { font-size: 0.65rem; }
  .mini-stars { font-size: 0.55rem; }

  .value-grid, .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }

  .form-section .container { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .guarantee-card { flex-direction: column; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }

  .lead-capture .container { flex-direction: column; text-align: center; }
  .lead-capture form { flex-direction: column; width: 100%; }
  .lead-capture input[type="email"] { width: 100%; }

  .mobile-bar { display: block; }
  .footer { padding-bottom: 70px; }

  .areas-section .container { text-align: center; }
}

@media (max-width: 480px) {
  .status-bar { font-size: 0.78rem; }
  .process-grid { grid-template-columns: 1fr; }
  .trust-logos { gap: 20px; }
  .trust-logos img { height: 32px; }
}

/* === ANIMATIONS === */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.anim { opacity: 0; transform: translateY(20px); }
.anim.visible { animation: fadeUp 0.5s ease forwards; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* === ABOUT & CONTACT PAGE RESPONSIVE === */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr !important; }
  .contact-cards { grid-template-columns: 1fr 1fr !important; }
  .service-area-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .contact-cards { grid-template-columns: 1fr !important; }
}
