/*
Theme Name: Dallas Pro Plumbing — dallas-pro-plumbing-theme-v1
Theme URI: https://flash.geometrydashapkk.online
Author: WP-Flash | SerpZenith
Author URI: https://wpflash.com
Description: Bespoke conversion theme for Dallas Pro Plumbing. Built with WP-Flash v4.0.
Version: 1.0.0
License: Private
Text Domain: dallas-pro-plumbing-theme-v1
*/

/* =====================
   CSS VARIABLES
   ===================== */
:root {
  --color-primary:    #1B4F8C;
  --color-secondary:  #163F6E;
  --color-accent:     #D97706;
  --color-accent-dk:  #B45309;
  --color-bg:         #FAFAF8;
  --color-surface:    #F5F5F3;
  --color-border:     #E5E7EB;
  --color-text:       #1F2937;
  --color-text-muted: #6B7280;
  --color-success:    #10B981;
  --color-warning:    #F59E0B;
  --primary-rgb:      27, 79, 140;

  --font-heading: 'Nunito', sans-serif;
  --font-body:    'Lato', sans-serif;

  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);

  --spacing-xs:  8px;
  --spacing-sm:  16px;
  --spacing-md:  24px;
  --spacing-lg:  48px;
  --spacing-xl:  80px;
  --spacing-2xl: 120px;

  --container:    1200px;
  --container-sm: 760px;
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
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-secondary); }
ul { list-style: none; }

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}
h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: clamp(22px, 3vw, 30px); }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
p { margin-bottom: 1.2em; color: var(--color-text); }
p:last-child { margin-bottom: 0; }

/* =====================
   LAYOUT
   ===================== */
.container    { max-width: var(--container);    margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: var(--container-sm); margin: 0 auto; padding: 0 24px; }
.section    { padding: var(--spacing-xl) 0; }
.section-lg { padding: var(--spacing-2xl) 0; }
.section-alt { background: var(--color-surface); }

/* =====================
   KICKER / SECTION HEADER
   ===================== */
.kicker {
  display: inline-block;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.section-header { margin-bottom: var(--spacing-lg); }
.section-header.center { text-align: center; }
.section-header.center .section-sub { max-width: 600px; margin: 12px auto 0; }
.section-sub { color: var(--color-text-muted); font-size: 18px; margin-top: 8px; }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-accent {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}
.btn-accent:hover {
  background: var(--color-accent-dk);
  border-color: var(--color-accent-dk);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: white;
}
.btn-lg { padding: 18px 36px; font-size: 18px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }
.btn-phone {
  background: var(--color-success);
  color: white;
  border-color: var(--color-success);
  font-size: 18px;
  font-weight: 800;
}
.btn-phone:hover { filter: brightness(0.9); color: white; transform: translateY(-2px); }

/* =====================
   CARDS
   ===================== */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
  font-size: 26px;
}
.card-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }

/* =====================
   STICKY HEADER / NAV
   ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo svg {
  height: 44px;
  width: auto;
  display: block;
}
.site-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text);
  white-space: nowrap;
}
.site-logo .logo-text strong { color: var(--color-primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--color-primary); }
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: var(--color-primary);
  white-space: nowrap;
}
.header-phone:hover { color: var(--color-secondary); }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 22px;
  color: var(--color-text);
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--color-border);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .hamburger { display: block; }
}
@media (max-width: 600px) {
  .header-phone span.phone-label { display: none; }
}

/* =====================
   HERO
   ===================== */
.hero {
  background: linear-gradient(135deg, #FAFAF8 0%, #EDF3FC 100%);
  padding: var(--spacing-2xl) 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--spacing-sm);
}
.hero-title {
  font-size: clamp(40px, 5.5vw, 60px);
  margin-bottom: var(--spacing-sm);
  line-height: 1.05;
}
.hero-title span { color: var(--color-primary); }
.hero-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-md);
  max-width: 520px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: var(--spacing-md); }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
}
.trust-item .icon { color: var(--color-success); font-size: 16px; }
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}
.hero-badge-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 320px;
}
.hero-badge-card h3 { font-size: 15px; color: var(--color-text-muted); font-weight: 600; margin-bottom: 4px; }
.hero-badge-card p { font-size: 22px; font-weight: 800; color: var(--color-primary); margin: 0; }
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* =====================
   TRUST BADGE ROW
   ===================== */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 24px 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  padding: 8px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
}
.trust-icon { font-size: 16px; }

/* =====================
   STATS BAR
   ===================== */
.stats-bar {
  background: var(--color-primary);
  color: white;
  padding: 48px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}
.stat-label { font-size: 14px; opacity: 0.85; margin-top: 6px; }
@media (max-width: 600px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }

/* =====================
   SERVICES GRID
   ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* =====================
   WHY CHOOSE US — VS BLOCK
   ===================== */
.vs-block {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.vs-side h3 { font-size: 18px; font-weight: 800; margin-bottom: 16px; }
.vs-side--them h3 { color: var(--color-text-muted); }
.vs-side--us h3 { color: var(--color-primary); }
.vs-list { list-style: none; }
.vs-list li { padding: 10px 0; font-size: 15px; border-bottom: 1px solid var(--color-border); }
.vs-list li:last-child { border-bottom: none; }
.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
  margin-top: 48px;
}
@media (max-width: 640px) {
  .vs-block { grid-template-columns: 1fr; padding: 24px; }
  .vs-divider { display: none; }
}

/* =====================
   RISK-REVERSAL CARDS
   ===================== */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.risk-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  overflow: hidden;
}
.risk-number {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 900;
  color: rgba(var(--primary-rgb), 0.08);
  line-height: 1;
  margin-bottom: -12px;
  letter-spacing: -0.04em;
}
.risk-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.risk-card p { color: var(--color-text-muted); font-size: 15px; margin: 0; }
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

/* =====================
   PROCESS STEPS
   ===================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}
.process-step { text-align: center; }
.process-icon {
  width: 72px;
  height: 72px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
  font-size: 30px;
}
.process-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 15px; color: var(--color-text-muted); }

/* =====================
   LOCATIONS GRID
   ===================== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.location-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  transition: all 0.2s;
  background: var(--color-surface);
}
.location-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(var(--primary-rgb), 0.04);
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { font-size: 18px; margin-bottom: 12px; }
.testimonial-text { font-style: italic; color: var(--color-text); line-height: 1.6; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 15px; }
.testimonial-location { font-size: 13px; color: var(--color-text-muted); }

/* =====================
   FAQ ACCORDION
   ===================== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-chevron {
  font-size: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  font-weight: 400;
}
details[open] .faq-chevron { transform: rotate(45deg); }
.faq-answer { padding: 0 0 20px; color: var(--color-text-muted); line-height: 1.7; }
.faq-answer p { margin: 0; }

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
  background: var(--color-primary);
  color: white;
  text-align: center;
  padding: var(--spacing-xl) 0;
}
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto var(--spacing-md);
}
.cta-section .btn-white {
  background: white;
  color: var(--color-primary);
  border-color: white;
  font-weight: 800;
}
.cta-section .btn-white:hover { background: rgba(255,255,255,0.9); color: var(--color-secondary); }
.cta-section .btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.cta-section .btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* =====================
   BREADCRUMB
   ===================== */
.breadcrumb-wrap { padding: 16px 0 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--color-primary); font-weight: 500; }
.breadcrumb span { color: var(--color-text-muted); }

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero {
  background: linear-gradient(135deg, #EDF3FC 0%, white 100%);
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero .subtitle { font-size: 18px; color: var(--color-text-muted); max-width: 580px; }
.page-hero .hero-ctas { margin-top: var(--spacing-md); }

/* =====================
   CONTENT AREA
   ===================== */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
  padding: var(--spacing-xl) 0;
}
.content-main h2 { margin: var(--spacing-lg) 0 var(--spacing-sm); }
.content-main h3 { margin: var(--spacing-md) 0 var(--spacing-xs); }
.content-main ul, .content-main ol { padding-left: 20px; margin-bottom: 1.2em; }
.content-main li { margin-bottom: 6px; }
.sidebar {}
.sidebar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card h3 { font-size: 18px; margin-bottom: 16px; }
.sidebar-links { list-style: none; }
.sidebar-links li { margin-bottom: 10px; }
.sidebar-links a { color: var(--color-text); font-size: 14px; font-weight: 500; }
.sidebar-links a:hover { color: var(--color-primary); }
@media (max-width: 900px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
}

/* =====================
   BENEFITS GRID
   ===================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: var(--spacing-lg) 0;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.benefit-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.benefit-item p { font-size: 14px; color: var(--color-text-muted); margin: 0; }

/* =====================
   NEARBY CITIES
   ===================== */
.nearby-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--spacing-sm);
}
.nearby-city {
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-surface);
  transition: all 0.2s;
}
.nearby-city:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: #111827;
  color: rgba(255,255,255,0.75);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--spacing-md);
}
.footer-brand-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}
.footer-brand-logo span { color: var(--color-accent); }
.footer-brand p { font-size: 14px; line-height: 1.7; opacity: 0.7; margin-bottom: 16px; }
.footer-col h4 { color: white; font-size: 15px; margin-bottom: 16px; font-family: var(--font-heading); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.55;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* =====================
   MOBILE CALL BAR
   ===================== */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--color-primary);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  padding: 12px 20px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}
.mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-heading);
}
.call-icon { font-size: 20px; }
.call-text { font-size: 15px; }
.call-number { font-size: 13px; opacity: 0.85; }
@media (max-width: 767px) {
  .mobile-call-bar { display: block; }
  main { padding-bottom: 72px; }
}

/* =====================
   404
   ===================== */
.error-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-xl) 24px;
}
.error-404 .error-code {
  font-family: var(--font-heading);
  font-size: 120px;
  font-weight: 900;
  color: rgba(var(--primary-rgb), 0.1);
  line-height: 1;
  margin-bottom: -20px;
}
.error-404 h1 { font-size: 32px; margin-bottom: 12px; }
.error-404 p { color: var(--color-text-muted); max-width: 400px; margin: 0 auto var(--spacing-md); }

/* =====================
   SCHEMA (hidden)
   ===================== */
.schema-hidden { display: none !important; }

/* =====================
   SVG ICON SIZING
   ===================== */
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.btn svg                 { width: 18px; height: 18px; flex-shrink: 0; }
.header-phone svg        { width: 18px; height: 18px; }
.hamburger svg           { width: 24px; height: 24px; }
.card-icon svg           { width: 28px; height: 28px; color: var(--color-primary); }
.benefit-icon svg        { width: 22px; height: 22px; color: var(--color-primary); }
.process-icon svg        { width: 34px; height: 34px; color: var(--color-primary); }
.trust-icon svg          { width: 18px; height: 18px; }
.trust-item .icon svg    { width: 15px; height: 15px; color: var(--color-success); flex-shrink: 0; }
.call-icon svg           { width: 22px; height: 22px; }
.location-link svg       { width: 14px; height: 14px; color: var(--color-accent); flex-shrink: 0; }
.nearby-city svg         { width: 14px; height: 14px; color: var(--color-accent); }
.hero-badge svg          { width: 14px; height: 14px; }
.stat-number svg         { width: 32px; height: 32px; color: var(--color-accent); vertical-align: middle; }
.testimonial-stars svg   { width: 18px; height: 18px; fill: var(--color-accent); color: var(--color-accent); }
.vs-icon                 { display: inline-flex; align-items: center; margin-right: 8px; vertical-align: middle; flex-shrink: 0; }
.vs-side--them .vs-icon svg { width: 16px; height: 16px; color: #EF4444; }
.vs-side--us   .vs-icon svg { width: 16px; height: 16px; color: var(--color-success); }
.footer-contact          { display: flex; align-items: center; gap: 8px; }
.footer-contact svg      { width: 14px; height: 14px; opacity: 0.6; flex-shrink: 0; }

/* =====================
   DESIGN POLISH v1.1
   ===================== */

/* Richer hero gradient */
.hero {
  background: linear-gradient(135deg, #F8FAFF 0%, #EDF3FC 55%, #E4EDFB 100%);
}

/* Hero image */
.hero-img-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27,79,140,0.18);
  margin-bottom: 16px;
}
.hero-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-img-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(27,79,140,0.92);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}
.hero-img-badge svg { width: 14px; height: 14px; color: white; }
.hero-stats-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-stat-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.hero-stat-chip svg { width: 14px; height: 14px; color: var(--color-primary); }
@media (max-width: 768px) {
  .hero-visual { display: flex !important; }
  .hero-img-wrap { max-height: 260px; overflow: hidden; }
}

/* Gradient stats + CTA bars */
.stats-bar { background: linear-gradient(135deg, #1B4F8C 0%, #163F6E 100%); }
.cta-section {
  background: linear-gradient(135deg, #1B4F8C 0%, #163F6E 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -8%;
  width: 420px;
  height: 420px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

/* Card — stronger lift on hover */
.card:hover {
  box-shadow: 0 16px 48px rgba(27,79,140,0.15);
  transform: translateY(-6px);
}
.card-icon {
  background: rgba(27,79,140,0.08);
  transition: background 0.25s ease;
}
.card:hover .card-icon { background: rgba(27,79,140,0.15); }

/* Process icons animate on hover */
.process-icon { transition: background 0.25s ease, transform 0.25s ease; }
.process-step:hover .process-icon {
  background: rgba(27,79,140,0.18);
  transform: scale(1.07);
}

/* Trust badges — subtle hover */
.trust-badge { transition: all 0.2s ease; cursor: default; }
.trust-badge:hover {
  border-color: var(--color-primary);
  background: rgba(27,79,140,0.05);
  color: var(--color-primary);
}

/* Risk cards — lift + border accent */
.risk-card { transition: all 0.3s ease; }
.risk-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Testimonial cards — lift */
.testimonial-card { transition: all 0.25s ease; }
.testimonial-card:hover {
  box-shadow: 0 14px 42px rgba(27,79,140,0.13);
  transform: translateY(-4px);
}

/* Inner page hero */
.page-hero {
  background: linear-gradient(135deg, #EDF3FC 0%, #F8FAFF 65%, white 100%);
}

/* Green phone button polish */
.btn-phone {
  background: linear-gradient(135deg, #059669 0%, #10B981 100%);
  box-shadow: 0 4px 14px rgba(16,185,129,0.28);
}
.btn-phone:hover {
  background: linear-gradient(135deg, #047857 0%, #059669 100%);
  box-shadow: 0 6px 20px rgba(16,185,129,0.38);
  transform: translateY(-2px);
  filter: none;
  color: white;
}
.btn-primary:hover { transform: translateY(-2px) scale(1.01); }

/* Header shadow refinement */
.site-header {
  box-shadow: 0 1px 0 var(--color-border), 0 2px 12px rgba(0,0,0,0.05);
}

/* Mobile call bar gradient */
.mobile-call-bar {
  background: linear-gradient(135deg, #1B4F8C 0%, #163F6E 100%);
  box-shadow: 0 -4px 24px rgba(27,79,140,0.3);
}

/* Sidebar top accent */
.sidebar-card { border-top: 3px solid var(--color-border); transition: box-shadow 0.2s; }
.sidebar-card:first-child { border-top-color: var(--color-accent); }

/* Content area list bullets */
.content-main ul li {
  list-style: none;
  padding-left: 26px;
  position: relative;
}
.content-main ul li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 7px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.content-main ol { padding-left: 24px; }
.content-main ol li { list-style: decimal; padding-left: 0; }
.content-main ol li::before { display: none; }

/* =====================
   PAGE HERO — BACKGROUND IMAGE + OVERLAY
   ===================== */
.page-hero {
  position: relative;
}
.page-hero--has-image {
  padding: var(--spacing-xl) 0 calc(var(--spacing-xl) + 16px);
  background-color: var(--color-secondary);
}
.page-hero--has-image h1,
.page-hero--has-image .subtitle,
.page-hero--has-image .trust-item {
  color: #ffffff;
}
.page-hero--has-image .subtitle {
  color: rgba(255,255,255,0.85);
}
.page-hero--has-image .trust-item { color: rgba(255,255,255,0.9); }
.page-hero--has-image .trust-item .icon svg { color: #6EE7B7; }
.page-hero--has-image .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: white;
}
.page-hero--has-image .btn-outline:hover {
  background: rgba(255,255,255,0.12);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,25,50,0.72) 0%, rgba(15,40,80,0.58) 100%);
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════════════════════
   v4.1 FIXES — hero layout · stats bar · service areas
   ═══════════════════════════════════════════════════════ */

/* HERO — 55/45 grid, full-width section */
.hero {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
  padding: 80px 60px;
  background: #f8f9fc;
  min-height: 90vh;
  max-width: 1280px;
  margin: 0 auto;
  /* reset old gradient */
  background-image: none;
}
/* Old inner wrapper becomes transparent passthrough */
.hero-inner { display: contents; }

/* LEFT column */
.hero-content {
  display: flex;
  flex-direction: column;
}
.hero-title  { margin-bottom: 16px; }
.hero-subtitle { margin-bottom: 28px; }
.hero-ctas   { margin-bottom: 24px; }

/* RIGHT column — image + stat chips stacked */
.hero-visual {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

/* Hero photo */
.hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(27,79,140,0.18);
}
.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Hide old absolute-positioned badge (was causing the floating shield) */
.hero-img-badge  { display: none !important; }
/* Hide old img-wrap if still in DOM */
.hero-img-wrap   { display: none !important; }
/* Also hide old static badge-card blocks if present */
.hero-badge-card { display: none !important; }

/* Stat chips — inside right column, below photo */
.hero-stats-row {
  display: flex;
  gap: 10px;
}
.hero-stat-chip {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  white-space: nowrap;
}
.hero-stat-chip svg { width: 14px; height: 14px; color: var(--color-primary); flex-shrink: 0; }

/* Trust pills (Issue 2) */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.trust-pill svg { width: 13px; height: 13px; color: var(--color-success); flex-shrink: 0; }

/* Trust row wrapper (removes old inline style) */
.trust-row-wrap {
  background: white;
  border-bottom: 1px solid var(--color-border);
}

/* Hero responsive */
@media (max-width: 960px) {
  .hero { padding: 60px 40px; gap: 32px; }
  .hero-image img { height: 340px; }
}
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    min-height: auto;
    gap: 28px;
  }
  /* Image column comes first on mobile */
  .hero-visual { order: -1; }
  .hero-image img { height: 240px; }
  .hero-stats-row { gap: 8px; }
  .hero-stat-chip { font-size: 12px; padding: 8px 10px; }
}

/* ═════════════════════════════════
   STATS BAR — icon above number
   ═════════════════════════════════ */
.stats-bar { background: linear-gradient(135deg, #1e3a5f 0%, #163F6E 100%); }

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.stat-icon svg {
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.65);
  /* No absolute positioning — normal flow */
  position: static;
}
.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: white;
  line-height: 1;
  /* remove any inline svg that was inside stat-number */
}
/* Hide any stray SVG still inside .stat-number (old markup fallback) */
.stat-number svg { display: none; }
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  font-weight: 500;
  margin-top: 6px;
}
@media (max-width: 600px) {
  .stat-number { font-size: 36px; }
  .stat-icon svg { width: 24px; height: 24px; }
}

/* ═════════════════════════════════════════
   SERVICE AREAS — 4-column responsive grid
   ═════════════════════════════════════════ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 860px;
  margin: 32px auto 0;
}
.location-link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.location-link:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}
.location-link:hover svg { color: white; }
.location-link svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .locations-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   v4.2 — TOP BAR + DROPDOWN NAV + FONT/COLOR FIXES
   ═══════════════════════════════════════════════════════ */

/* ── TOP BAR ── */
.top-bar {
  background: var(--color-secondary);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.82);
}
.top-bar-item svg { width: 13px; height: 13px; opacity: 0.7; flex-shrink: 0; }
.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}
.top-bar-phone:hover { opacity: 0.85; color: white; }
.top-bar-phone svg { width: 13px; height: 13px; flex-shrink: 0; }
@media (max-width: 640px) {
  .top-bar-item:first-child { display: none; }
}

/* ── HEADER CTA BUTTON (replaces old header-phone link) ── */
.header-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 3px 12px rgba(27,79,140,0.25);
  flex-shrink: 0;
}
.header-cta-btn:hover {
  background: var(--color-secondary);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(27,79,140,0.35);
}
.header-cta-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.header-cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.header-cta-text small {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.header-cta-text strong { font-size: 16px; font-weight: 800; }
@media (max-width: 1100px) {
  .header-cta-text { display: none; }
  .header-cta-btn { padding: 10px 14px; }
}
@media (max-width: 900px) { .header-cta-btn { display: none; } }

/* ── NAV LINK BASE ── */
.nav-item {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-item:hover { color: var(--color-primary); }

/* ── DROPDOWN WRAPPER ── */
.nav-dropdown {
  position: relative;
}
.nav-has-dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-chevron {
  font-size: 9px;
  opacity: 0.5;
  transition: transform 0.2s;
  display: inline-block;
  margin-top: 1px;
}
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); opacity: 1; }

/* ── DROPDOWN MENU ── */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.06);
  min-width: 680px;
  z-index: 200;
  display: none;
  padding: 12px;
}
.dropdown-menu.open,
.nav-dropdown:hover .dropdown-menu { display: block; }

/* arrow pointer */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: white;
  border-left: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
  transform: translateX(-50%) rotate(45deg);
}

/* ── DROPDOWN GRID ── */
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
}
.dropdown-col { padding: 8px 4px; }
.dropdown-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  padding: 0 12px;
}

/* ── DROPDOWN LINKS ── */
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--color-text);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  line-height: 1.3;
}
.dropdown-menu a:hover {
  background: rgba(var(--primary-rgb), 0.06);
  color: var(--color-primary);
}
.dropdown-menu a strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}
.dropdown-menu a:hover strong { color: var(--color-primary); }
.dropdown-menu a small {
  display: block;
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 400;
}
.dd-icon {
  width: 34px;
  height: 34px;
  background: rgba(var(--primary-rgb), 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.dd-icon svg { width: 16px; height: 16px; color: var(--color-primary); }
.dropdown-menu a:hover .dd-icon { background: rgba(var(--primary-rgb), 0.14); }

/* Emergency link — accent highlight */
.dd-emergency { background: rgba(217,119,6,0.05); border-radius: var(--radius); }
.dd-emergency:hover { background: rgba(217,119,6,0.1) !important; color: var(--color-accent-dk) !important; }
.dd-emergency:hover strong { color: var(--color-accent-dk) !important; }
.dd-emergency .dd-icon { background: rgba(217,119,6,0.1); }
.dd-emergency .dd-icon svg { color: var(--color-accent); }

/* ── DROPDOWN CTA PANEL ── */
.dropdown-cta {
  background: linear-gradient(135deg, #EDF3FC 0%, #F8FAFF 100%);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
  border: 1px solid rgba(var(--primary-rgb), 0.1);
}
.dropdown-cta-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}
.dropdown-cta .btn { justify-content: center; width: 100%; }
.dropdown-cta-note {
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: 6px;
}

/* ── SERVICE AREAS DROPDOWN (smaller) ── */
.dropdown-menu--sm {
  min-width: 260px;
  padding: 8px;
}
.dd-area-link {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 14px !important;
}
.dd-area-link svg { width: 14px; height: 14px; color: var(--color-accent); flex-shrink: 0; }
.dd-area-link span { display: flex; flex-direction: column; }
.dd-area-link strong { font-size: 14px; font-weight: 700; color: var(--color-text); }
.dd-area-link small { font-size: 12px; color: var(--color-text-muted); }
.dd-area-divider { height: 1px; background: var(--color-border); margin: 6px 12px; }
.dd-area-all {
  display: block !important;
  text-align: center !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--color-primary) !important;
  padding: 10px !important;
  border-top: 1px solid var(--color-border);
  margin-top: 4px;
}

/* ── MOBILE NAV ── */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 72px 0 24px;
    box-shadow: -8px 0 32px rgba(0,0,0,0.15);
    z-index: 999;
    overflow-y: auto;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-item {
    padding: 14px 24px;
    font-size: 16px;
    border-bottom: 1px solid var(--color-border);
    display: block;
  }
  .nav-dropdown { order: unset; }
  .nav-has-dropdown { padding: 14px 24px; border-bottom: 1px solid var(--color-border); }
  .dropdown-menu {
    position: static;
    transform: none;
    min-width: auto;
    width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: var(--color-surface);
    padding: 0;
  }
  .dropdown-menu::before { display: none; }
  .dropdown-menu.open { display: block; }
  .dropdown-grid { grid-template-columns: 1fr; gap: 0; }
  .dropdown-col { padding: 0; }
  .dropdown-cta { display: none; }
  .dropdown-heading { padding: 12px 24px 4px; }
  .dropdown-menu a { padding: 10px 24px 10px 36px; border-radius: 0; }
  .dd-icon { width: 28px; height: 28px; }
  .dropdown-menu--sm { width: 100%; }
  .dd-area-link { padding: 10px 24px 10px 36px !important; }
  .hamburger { display: block; }
}
@media (min-width: 1025px) {
  .hamburger { display: none; }
}

/* ── CONTENT AREA — FONT & COLOR FIXES ── */

/* Fix: global `ul { list-style: none }` kills content bullets. Restore them. */
.content-main ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.4em;
}
.content-main ul > li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
}
.content-main ul > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.6;
}

/* Ordered lists */
.content-main ol {
  padding-left: 20px;
  margin-bottom: 1.4em;
}
.content-main ol > li {
  list-style: decimal;
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  padding-left: 4px;
}

/* Headings inside content — proper spacing + color */
.content-main h2 {
  color: var(--color-secondary);
  margin-top: 2em;
  margin-bottom: 0.6em;
  font-size: clamp(22px, 3vw, 32px);
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(var(--primary-rgb), 0.1);
}
.content-main h3 {
  color: var(--color-primary);
  margin-top: 1.6em;
  margin-bottom: 0.5em;
  font-size: clamp(18px, 2.5vw, 24px);
}
.content-main h4 {
  color: var(--color-text);
  margin-top: 1.4em;
  margin-bottom: 0.4em;
  font-size: 18px;
}

/* Paragraphs — correct color and spacing */
.content-main p {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 1.2em;
}

/* Links in content — visible & accessible */
.content-main a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.content-main a:hover { color: var(--color-accent-dk); }

/* Definition lists (used in FAQ content) */
.content-main dt {
  font-weight: 700;
  color: var(--color-text);
  margin-top: 1.2em;
  font-size: 16px;
}
.content-main dd {
  color: var(--color-text-muted);
  padding-left: 16px;
  margin-bottom: 0.8em;
  font-size: 15px;
  border-left: 3px solid rgba(var(--primary-rgb), 0.15);
  padding-left: 12px;
}

/* Strong / bold inside content */
.content-main strong { color: var(--color-text); font-weight: 700; }

/* Page hero — strong H1 color */
.page-hero h1 { color: var(--color-secondary); }

/* Section headings — ensure dark readable color */
.section-header h2 { color: var(--color-text); }
.section-header h3 { color: var(--color-text); }

/* ── CLOSE BUTTON FOR MOBILE DRAWER ── */
.nav-links.open::before {
  content: '✕';
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: var(--color-text-muted);
  cursor: pointer;
  z-index: 1001;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border-radius: 50%;
  border: 1px solid var(--color-border);
}

/* ═══════════════════════════════════════════════════════
   v4.3 FIXES — Hero · Sidebar · Footer · Buttons · Mobile
   ═══════════════════════════════════════════════════════ */

/* ── 1. PAGE HERO — FULL-WIDTH IMAGE + OVERLAY ── */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero--has-image {
  min-height: 500px;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  padding: 80px 0 64px;
  border-bottom: none;
}
.page-hero--has-image .container {
  position: relative;
  z-index: 2;
}
.page-hero--has-image h1 {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  max-width: 700px;
}
.page-hero--has-image .subtitle {
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
  max-width: 600px;
  font-size: 19px;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.page-hero--has-image .hero-ctas {
  margin-top: 28px;
  position: relative;
  z-index: 2;
}
.page-hero--has-image .btn-phone {
  font-size: 18px;
  padding: 16px 32px;
  box-shadow: 0 4px 16px rgba(16,185,129,0.35);
}
.page-hero--has-image .btn-outline {
  border-color: rgba(255,255,255,0.7);
  color: #ffffff;
  padding: 16px 32px;
  font-size: 18px;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.08);
}
.page-hero--has-image .btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: #ffffff;
}
@media (max-width: 768px) {
  .page-hero--has-image {
    min-height: 400px;
    padding: 60px 0 48px;
  }
  .page-hero--has-image h1 { font-size: clamp(28px, 6vw, 40px); }
  .page-hero--has-image .hero-ctas { flex-direction: column; }
  .page-hero--has-image .btn-phone,
  .page-hero--has-image .btn-outline { width: 100%; justify-content: center; }
}

/* ── 2. SIDEBAR BUTTONS + STICKY ── */
.sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}
.btn-white {
  background: #ffffff;
  color: var(--color-primary);
  border-color: #ffffff;
  font-weight: 800;
}
.btn-white:hover {
  background: #f0f4ff;
  color: var(--color-secondary);
  border-color: #f0f4ff;
}
.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border-color: rgba(255,255,255,0.9);
}
.sidebar-card[style*="background:var(--color-primary)"] .btn-white,
.sidebar-card[style*="background: var(--color-primary)"] .btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: #ffffff;
  color: var(--color-primary);
  border: 2px solid #ffffff;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
  width: 100%;
}
.sidebar-card[style*="background:var(--color-primary)"] .btn-white:hover,
.sidebar-card[style*="background: var(--color-primary)"] .btn-white:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.sidebar-card[style*="background:var(--color-primary)"] .btn-outline-white,
.sidebar-card[style*="background: var(--color-primary)"] .btn-outline-white {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
  width: 100%;
}
.sidebar-card[style*="background:var(--color-primary)"] .btn-outline-white:hover,
.sidebar-card[style*="background: var(--color-primary)"] .btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #ffffff;
}
@media (max-width: 900px) {
  .sidebar {
    position: static;
  }
}

/* ── 3. FOOTER FIX — Layout + Logo + Colors ── */
.site-footer {
  background: #0f172a;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-logo-img {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-logo-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}
.footer-brand-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  line-height: 1.2;
}
.footer-brand-logo span { color: var(--color-accent); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  max-width: 300px;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.footer-contact a {
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #ffffff !important; }
.footer-contact svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
  flex-shrink: 0;
}
.footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ── 4. GENERAL BUTTON FIXES ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── 5. MOBILE RESPONSIVE FIXES ── */
@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-item { gap: 12px; }
  .faq-question { font-size: 15px; padding: 16px 0; }
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-lg { padding: 64px 0; }
  .content-layout { gap: 32px; padding: 32px 0; }
}
@media (max-width: 480px) {
  h1 { font-size: clamp(28px, 7vw, 40px); }
  h2 { font-size: clamp(22px, 5vw, 32px); }
  .btn-lg { padding: 14px 24px; font-size: 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ── 6. IMAGE DEFAULTS ── */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.content-main img {
  border-radius: var(--radius);
  margin: 1em 0;
}

