/* ============================================
   Eric's Home Services - Design System
   Burnt orange + navy + cream
   ============================================ */

:root {
  --orange: #BF5700;
  --orange-dark: #8F4100;
  --orange-light: #E87722;
  --orange-pale: #FDF1E5;
  --navy: #1A2332;
  --navy-soft: #2C3E50;
  --cream: #FBF7F1;
  --white: #ffffff;
  --gray-900: #1a1a1a;
  --gray-700: #4a4a4a;
  --gray-500: #777;
  --gray-300: #d1d1d1;
  --gray-200: #e8e8e8;
  --gray-100: #f4f4f4;
  --gold: #F2B807;
  --green: #2E8B57;
  --red: #C0392B;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
  --shadow-xl: 0 24px 48px rgba(0,0,0,.16);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-w: 1240px;
  --transition: 200ms cubic-bezier(.4,0,.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: .75rem; }
h4 { font-size: 1.15rem; margin-bottom: .5rem; }
p { margin-bottom: 1rem; }
.eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}

/* Layout */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-tight { padding: 48px 0; }
@media (max-width: 768px) {
  .section { padding: 56px 0; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(191,87,0,.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(191,87,0,.4);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 18px; font-size: .9rem; }

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: .875rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.topbar-left, .topbar-right {
  display: flex;
  gap: 18px;
  align-items: center;
}
@media (max-width: 1100px) {
  .topbar-right { gap: 12px; }
  .topbar-left span:nth-child(2) { display: none; }
}
.topbar a { color: var(--white); }
.topbar a:hover { color: var(--orange-light); }
.topbar-badge {
  background: var(--orange);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .topbar { display: none; }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.site-header .logo { flex-shrink: 0; }

/* Full-width nav bar (under header, like Elmer's pink bar) */
.nav-bar {
  background: var(--navy);
  border-top: 3px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.nav-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}
.nav-bar nav { width: 100%; }
.nav-bar .main-nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
}
.nav-bar .main-nav > li {
  position: relative;
  display: flex;
  align-items: stretch;
}
.nav-bar .main-nav > li > a,
.nav-bar .main-nav > li > .nav-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 14px;
  color: rgba(255,255,255,.92);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .01em;
  text-decoration: none;
  border-radius: 0;
  transition: all 200ms;
  white-space: nowrap;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-bar .main-nav > li > a:hover,
.nav-bar .main-nav > li > .nav-trigger:hover,
.nav-bar .has-submenu:hover > .nav-trigger {
  background: var(--orange);
  color: var(--white);
}
.nav-bar .nav-trigger::after {
  content: '';
  width: 5px; height: 5px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 4px;
  margin-bottom: 2px;
}
.nav-bar .nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  margin-left: 8px;
}
.nav-bar .nav-cta:hover {
  background: var(--orange-dark) !important;
}
.nav-bar .submenu {
  position: absolute;
  top: 100%;
  left: 0;
}

/* Site header (logo row) tighter at smaller widths */
@media (max-width: 1100px) {
  .header-phone-inline .header-phone-label { display: none; }
  .nav-bar .main-nav > li > a,
  .nav-bar .main-nav > li > .nav-trigger { padding: 16px 11px; font-size: .88rem; }
}
@media (max-width: 1024px) {
  .header-phone-inline { display: none; }
  .nav-bar { display: none; }
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.logo-img-full {
  width: 240px;
  height: auto;
  display: block;
  background: #FBF7F1;
  padding: 12px;
  border-radius: 8px;
}
.footer-logo { display: inline-block; margin-bottom: 16px; }
@media (max-width: 1100px) {
  .logo-img { height: 48px; }
}
@media (max-width: 768px) {
  .logo-img { height: 42px; }
}
.logo-mark {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 12px rgba(191,87,0,.3);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: -.02em;
}
.logo-text span {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange);
  font-weight: 700;
  margin-top: 2px;
}

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav > li { position: relative; }
.main-nav > li > a, .main-nav > li > .nav-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.main-nav > li > a:hover, .main-nav > li > .nav-trigger:hover,
.main-nav > li.has-submenu:hover > .nav-trigger {
  background: var(--orange-pale);
  color: var(--orange);
}
.nav-trigger::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 2px;
  margin-bottom: 2px;
}
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu li a {
  display: block;
  padding: 10px 14px;
  color: var(--navy);
  font-weight: 500;
  font-size: .92rem;
  border-radius: 6px;
  transition: all var(--transition);
}
.submenu li a:hover {
  background: var(--orange-pale);
  color: var(--orange);
  padding-left: 18px;
}
.submenu-wide {
  min-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.submenu-header {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange);
  padding: 12px 14px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 4px;
  grid-column: 1 / -1;
}
.submenu-header:not(:first-child) {
  margin-top: 8px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-phone-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--orange-pale);
  border: 2px solid var(--orange);
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 200ms;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
}
.header-phone-inline:hover {
  background: var(--orange);
  color: var(--white);
}
.header-phone-inline:hover .header-phone-label,
.header-phone-inline:hover strong {
  color: var(--white);
}
.header-phone-inline svg {
  color: var(--orange);
  flex-shrink: 0;
}
.header-phone-inline:hover svg { color: var(--white); }
.header-phone-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.header-phone-inline strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  align-items: center;
  justify-content: center;
}
.menu-toggle svg { width: 24px; height: 24px; }

@media (max-width: 1024px) {
  .main-nav, .header-phone { display: none; }
  .menu-toggle { display: flex; }
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  overflow-y: auto;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.mobile-nav-close {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: var(--navy);
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 14px 12px;
  color: var(--navy);
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-nav details summary {
  padding: 14px 12px;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
  cursor: pointer;
  border-bottom: 1px solid var(--gray-200);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav details summary::after {
  content: '+';
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 800;
}
.mobile-nav details[open] summary::after { content: '−'; }
.mobile-nav details ul { padding-left: 12px; }
.mobile-nav details a { font-weight: 500; font-size: 1rem; padding: 10px 12px; }
.mobile-nav-cta { margin-top: 24px; }
.mobile-nav-cta .btn { width: 100%; justify-content: center; margin-bottom: 10px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 100px 0 120px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(232,119,34,.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(191,87,0,.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
  opacity: .03;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--orange-light); }
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-weight: 500;
  font-size: .95rem;
}
.hero-trust-item svg { width: 22px; height: 22px; color: var(--orange-light); flex-shrink: 0; }
.hero-trust-item strong { color: var(--white); }

.hero-card {
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.hero-card-badge {
  position: absolute;
  top: -16px;
  right: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 8px 16px rgba(191,87,0,.4);
}
.hero-card h3 { margin-bottom: 1rem; font-size: 1.5rem; }
.hero-card-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 1.75rem; }
.hero-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--gray-700);
}
.hero-card-features svg {
  width: 22px; height: 22px;
  color: var(--green); flex-shrink: 0;
  margin-top: 2px;
}
.hero-card .btn { width: 100%; justify-content: center; }
.hero-card-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--gray-500);
  font-size: .85rem;
}
.hero-card-divider::before, .hero-card-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.hero-card-phone {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  padding: 12px;
  border-radius: var(--radius);
  border: 2px solid var(--orange-pale);
  transition: all var(--transition);
}
.hero-card-phone:hover {
  background: var(--orange-pale);
  color: var(--orange-dark);
}

@media (max-width: 900px) {
  .hero { padding: 56px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   TRUST BAR (under hero)
   ============================================ */
.trust-bar {
  background: var(--cream);
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  align-items: center;
  text-align: center;
}
.trust-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.trust-bar-item strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: var(--orange);
  font-weight: 800;
}
.trust-bar-item span {
  font-size: .85rem;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

/* ============================================
   SERVICE GRID
   ============================================ */
.section-header { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-header p { color: var(--gray-700); font-size: 1.1rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--orange-pale);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card-icon svg { width: 32px; height: 32px; }
.service-card:hover .service-card-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}
.service-card h3 { margin-bottom: .5rem; }
.service-card p { color: var(--gray-700); margin-bottom: 1rem; flex: 1; }
.service-card-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 700;
  font-size: .95rem;
  margin-top: auto;
}
.service-card-link::after {
  content: '→';
  transition: transform var(--transition);
}
.service-card:hover .service-card-link::after { transform: translateX(4px); }

/* ============================================
   SOCIAL PROOF / REVIEWS
   ============================================ */
.reviews-section {
  background: var(--cream);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: var(--gold);
}
.review-stars svg { width: 20px; height: 20px; fill: currentColor; }
.review-text {
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 16px;
  font-size: .98rem;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}
.review-name { font-weight: 700; color: var(--navy); font-size: .95rem; }
.review-meta { font-size: .8rem; color: var(--gray-500); }

.google-rating-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--white);
  padding: 20px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto 48px;
  flex-wrap: wrap;
}
.google-rating-banner-num {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.google-rating-banner-meta { display: flex; flex-direction: column; }
.google-rating-banner-meta .review-stars { margin-bottom: 4px; }
.google-rating-banner-meta strong { color: var(--navy); }
.google-rating-banner-meta span { font-size: .85rem; color: var(--gray-500); }

/* ============================================
   WHY US / FEATURES
   ============================================ */
.why-us-section { background: var(--white); }
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.why-us-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  aspect-ratio: 4/5;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  color: var(--white);
}
.why-us-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M60 10 L70 50 L110 60 L70 70 L60 110 L50 70 L10 60 L50 50 Z' fill='rgba(255,255,255,.06)'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: .5;
}
.why-us-image-content { position: relative; z-index: 2; }
.why-us-image-badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.why-us-image h3 { color: var(--white); font-size: 1.75rem; margin: 0; }

.feature-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.feature-item { display: flex; gap: 20px; }
.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--orange-pale);
  color: var(--orange);
  display: grid;
  place-items: center;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-content h4 { font-size: 1.2rem; margin-bottom: 4px; }
.feature-content p { color: var(--gray-700); margin: 0; font-size: .98rem; }

@media (max-width: 900px) {
  .why-us-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-us-image { aspect-ratio: 16/10; }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,.1) 0%, transparent 30%),
    radial-gradient(circle at 90% 50%, rgba(255,255,255,.08) 0%, transparent 30%);
}
.cta-banner-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-banner h2 { color: var(--white); margin-bottom: .5rem; }
.cta-banner p { color: rgba(255,255,255,.9); margin: 0; font-size: 1.1rem; }
.cta-banner-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.cta-banner .btn-primary:hover {
  background: var(--navy);
  color: var(--white);
}
@media (max-width: 768px) {
  .cta-banner-grid { grid-template-columns: 1fr; text-align: center; }
  .cta-banner-buttons { justify-content: center; }
}

/* ============================================
   OFFERS / PROMOS
   ============================================ */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  border: 2px dashed var(--orange);
  position: relative;
  transition: all var(--transition);
}
.offer-card:hover {
  background: var(--orange-pale);
  transform: translateY(-4px);
}
.offer-card-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.offer-card-price {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  margin: 16px 0 8px;
  line-height: 1;
}
.offer-card-price small { font-size: 1rem; vertical-align: top; }
.offer-card h3 { margin-bottom: .5rem; }
.offer-card p { color: var(--gray-700); font-size: .9rem; margin-bottom: 1.5rem; }

/* ============================================
   PROBLEMS / FAQ
   ============================================ */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.problem-tile {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition);
  text-decoration: none;
}
.problem-tile:hover {
  border-color: var(--orange);
  background: var(--orange-pale);
  transform: translateX(4px);
}
.problem-tile-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange-pale);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.problem-tile-icon svg { width: 22px; height: 22px; }
.problem-tile span {
  font-weight: 600;
  color: var(--navy);
  font-size: .95rem;
}

.faq { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--orange); }
.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 12px; height: 12px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-bottom: 4px;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-bottom: 0; margin-top: 4px; }
.faq-content { padding: 0 24px 20px; color: var(--gray-700); }
.faq-content p { margin-bottom: 12px; }
.faq-content p:last-child { margin-bottom: 0; }

/* ============================================
   SERVICE / INNER PAGE
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(232,119,34,.15) 0%, transparent 50%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header-subtitle { color: rgba(255,255,255,.85); font-size: 1.2rem; max-width: 720px; margin-bottom: 24px; }

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb-sep { color: rgba(255,255,255,.4); }

.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}
.content-main h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { margin-top: 1.75rem; }
.content-main p, .content-main ul, .content-main ol { margin-bottom: 1rem; color: var(--gray-700); }
.content-main ul, .content-main ol { padding-left: 24px; }
.content-main ul li, .content-main ol li { margin-bottom: 8px; }
.content-main ul li::marker { color: var(--orange); }
.content-main strong { color: var(--navy); }
.content-main a { font-weight: 600; }
.content-main blockquote {
  border-left: 4px solid var(--orange);
  background: var(--orange-pale);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--navy);
}

.callout {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  margin: 32px 0;
}
.callout h3 { color: var(--white); margin-bottom: 8px; }
.callout p { color: rgba(255,255,255,.9); margin-bottom: 16px; }
.callout .btn-primary {
  background: var(--orange);
  color: var(--white);
}
.callout .btn-primary:hover { background: var(--white); color: var(--orange); }

.sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  color: var(--navy);
}
.sidebar-card ul { display: flex; flex-direction: column; gap: 4px; }
.sidebar-card ul li a {
  display: block;
  padding: 8px 0;
  color: var(--navy);
  font-weight: 500;
  font-size: .95rem;
  border-bottom: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.sidebar-card ul li:last-child a { border-bottom: 0; }
.sidebar-card ul li a:hover { color: var(--orange); padding-left: 6px; }
.sidebar-cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  text-align: center;
}
.sidebar-cta h4 { color: var(--white); border: 0; padding: 0; margin-bottom: 8px; font-size: 1.3rem; }
.sidebar-cta p { color: rgba(255,255,255,.9); font-size: .92rem; margin-bottom: 16px; }
.sidebar-cta-phone {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  background: rgba(255,255,255,.15);
  padding: 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.sidebar-cta-phone:hover {
  background: var(--white);
  color: var(--orange);
}
.sidebar-cta .btn { width: 100%; justify-content: center; background: var(--white); color: var(--orange); }
.sidebar-cta .btn:hover { background: var(--navy); color: var(--white); }

@media (max-width: 1024px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

/* ============================================
   CITY PAGES (Service Area)
   ============================================ */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.city-tile {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  font-weight: 600;
  color: var(--navy);
}
.city-tile:hover {
  border-color: var(--orange);
  background: var(--orange-pale);
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.city-tile svg { width: 18px; height: 18px; color: var(--orange); }

.region-section { margin-bottom: 56px; }
.region-section h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--orange);
}
.region-section h2::before {
  content: '';
  display: block;
  width: 8px; height: 32px;
  background: var(--orange);
  border-radius: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.65; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: grid; place-items: center;
  color: var(--white);
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--orange); transform: translateY(-2px); }
.footer-socials svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  transition: all var(--transition);
}
.footer-col ul a:hover { color: var(--orange-light); padding-left: 4px; }
.footer-col p { font-size: .92rem; color: rgba(255,255,255,.7); }
.footer-col p strong { color: var(--white); display: block; margin-bottom: 2px; font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom-links { display: flex; gap: 20px; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   FLOATING CALL BUTTON (mobile)
   ============================================ */
.floating-call {
  display: flex;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(191,87,0,.5);
  z-index: 50;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
  transition: all 300ms;
}
.floating-call.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.floating-call svg { width: 28px; height: 28px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(191,87,0,.5), 0 0 0 0 rgba(191,87,0,.5); }
  50% { box-shadow: 0 8px 24px rgba(191,87,0,.5), 0 0 0 12px rgba(191,87,0,0); }
}

/* ============================================
   QUICK ANSWER BLOCK (AI-optimized TL;DR)
   ============================================ */
.quick-answer {
  background: linear-gradient(135deg, #FFF8F0 0%, #FDF1E5 100%);
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 0 0 32px;
  position: relative;
  box-shadow: 0 4px 16px rgba(191, 87, 0, 0.08);
}
.quick-answer-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(191, 87, 0, 0.3);
}
.quick-answer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  flex-shrink: 0;
}
.quick-answer-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
}
.quick-answer-updated {
  margin-left: auto;
  font-size: .75rem;
  color: var(--gray-500);
  font-weight: 500;
}
.quick-answer-summary {
  font-size: 1.1rem !important;
  line-height: 1.55 !important;
  color: var(--navy) !important;
  font-weight: 500 !important;
  margin-bottom: 18px !important;
}
.quick-answer-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 24px;
  padding: 0 !important;
  margin: 0 !important;
}
.qa-fact {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  border-left: 3px solid var(--orange);
}
.qa-fact dt {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 2px !important;
}
.qa-fact dd {
  font-weight: 700 !important;
  color: var(--navy);
  font-size: .95rem;
  margin: 0 !important;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .quick-answer { padding: 20px; }
  .quick-answer-summary { font-size: 1rem !important; }
  .quick-answer-facts { grid-template-columns: 1fr; gap: 8px; }
  .quick-answer-updated { display: none; }
}

/* ============================================
   AUTHOR BYLINE (E-E-A-T signal for AI search)
   ============================================ */
.author-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  margin: 24px 0;
}
.author-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 3px solid var(--cream);
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
}
.author-avatar-2 {
  background: var(--navy);
  margin-left: -14px;
}
.author-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 2px;
}
.author-credentials {
  font-size: .82rem;
  color: var(--gray-700);
  line-height: 1.5;
}
@media (max-width: 600px) {
  .author-byline { padding: 14px; gap: 12px; }
  .author-avatar { width: 40px; height: 40px; font-size: 1.2rem; }
  .author-name { font-size: .92rem; }
  .author-credentials { font-size: .75rem; }
}

/* ============================================
   UTILS
   ============================================ */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: var(--white); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.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;
}

/* ============================================
   MOBILE FIXES (overrides — keep at end)
   Prevent header overflow on phones that was
   forcing the document wider than the viewport
   and causing the hero to render in the left half.
   ============================================ */
@media (max-width: 768px) {
  html, body { max-width: 100vw; overflow-x: hidden; }
  .site-header .container {
    flex-wrap: nowrap;
    gap: 12px;
    min-width: 0;
  }
  .site-header .logo { min-width: 0; flex-shrink: 1; }
  .logo-img { max-width: 70vw; }
  .header-cta { gap: 8px; min-width: 0; }
  /* Hide the inline phone + Schedule button on small phones —
     they're duplicated in the hamburger menu and the hero CTAs. */
  .header-phone-inline { display: none; }
  .site-header .header-cta .btn-primary { display: none; }
  /* Belt-and-suspenders: lock hero + all common 2-col grids to single column. */
  .hero-grid,
  .why-us-grid,
  .content-layout,
  .footer-grid { grid-template-columns: 1fr !important; }
  /* Prevent any descendant from exceeding viewport. */
  section, .container { max-width: 100%; }
  img, svg { max-width: 100%; height: auto; }
}
