/* ================================================================
   Main Stylesheet (Asphalt theme)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Rubik:wght@300;400;500;600&display=swap');

/* ── Variables ────────────────────────────────────────────────── */
:root {
  --primary:        #0A0A0A;
  --primary-2:      #141414;
  --primary-3:      #252525;
  --accent:         #FFD100;
  --accent-hover:   #C9A800;
  --accent-2:       #FBBF24;
  --accent-light:   rgba(255, 209, 0, 0.10);
  --accent-border:  rgba(255, 209, 0, 0.25);
  --concrete:       #6B7280;
  --concrete-lt:    #9CA3AF;
  --bg-light:       #141414;
  --bg-section:     #0A0A0A;
  --white:          #F8FAFC;
  --text:           #F8FAFC;
  --text-mid:       #9CA3AF;
  --text-lt:        #6B7280;
  --text-dim:       #5A5A5A;
  --border:         #252525;
  --radius:         .625rem;
  --radius-lg:      1rem;
  --shadow:         0 1px 4px rgba(0,0,0,.50);
  --shadow-md:      0 8px 24px rgba(0,0,0,.45);
  --shadow-lg:      0 20px 50px rgba(255,209,0,.15);
  --transition:     all .25s ease;
  --max-w:          1280px;
  --font-head:      'Outfit', sans-serif;
  --font-body:      'Rubik', sans-serif;
}

/* ── Reset / Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--primary);
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.025) 1px, transparent 0);
  background-size: 22px 22px;
  overflow-x: hidden;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-hover); }
/* Content lists: indent so bullets sit beside the text, matching paragraph color */
ul, ol { padding-left: 1.5rem; color: var(--text-mid); }
/* Strip bullets + indent from UI lists only; content <ul>/<ol> keep bullets */
.main-nav, .dropdown, .checklist, .contact-info-list, .footer-col ul { list-style: none; padding-left: 0; }

/* ── Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 900; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

/* Highlight spans inside headings (e.g. <h1>...<span>Trusted</span>...</h1>) */
h1 span, h2 span, h3 span {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout Utilities ─────────────────────────────────────────── */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section     { padding: 6rem 0; position: relative; }
.section-sm  { padding: 3rem 0; }
.text-center { text-align: center; }
.text-white  { color: #fff !important; }
.bg-dark     { background: var(--primary); }
.bg-dark-2   { background: #060606; }
.bg-light    { background: var(--primary-2); }
.bg-orange   { background: var(--accent); color: #0A0A0A; }

/* ── Section badges ───────────────────────────────────────────── */
.section-label,
.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  padding: .35rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.section-title  { margin-bottom: 1rem; color: #fff; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: .75rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease,
              background .2s ease, color .2s ease, border-color .2s ease;
  line-height: 1;
  white-space: nowrap;
  text-transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #0A0A0A;
  border: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,209,0,.45);
  color: #0A0A0A;
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline-dark {
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
}
.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-call {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #0A0A0A;
  border: none;
}
.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,209,0,.45);
  color: #0A0A0A;
}

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; border-radius: .875rem; }
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }

/* ── Top Bar ──────────────────────────────────────────────────── */
.topbar {
  background: #060606;
  border-bottom: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-mid);
  padding: .55rem 0;
  position: relative;
  z-index: 99;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.topbar-items {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--text-mid);
}
.topbar-item:hover { color: var(--accent); }
.topbar-item svg { color: var(--accent); }

@media (max-width: 640px) {
  .topbar { display: none; }
}

/* ── Site Header / Nav ────────────────────────────────────────── */
.site-header {
  background: rgba(8, 14, 26, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,209,0,.15);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: #fff;
}
.site-logo img { max-height: 42px; width: auto; }
.logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  border-radius: .625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text .line1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .03em;
  color: #fff;
  text-transform: uppercase;
}
.logo-text .line2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--accent);
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin: 0;
}
.main-nav > li { position: relative; }
.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  color: var(--concrete-lt);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  padding: .5rem 0;
  transition: color .2s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--accent); }

.main-nav .has-dropdown > a svg { transition: transform .2s ease; }
.main-nav .has-dropdown:hover > a svg { transform: rotate(180deg); }

.main-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #141414;
  border: 1px solid var(--border);
  border-radius: .75rem;
  padding: .5rem;
  min-width: 230px;
  box-shadow: 0 16px 40px rgba(0,0,0,.6);
  display: none;
  z-index: 110;
}
.main-nav .has-dropdown:hover .dropdown,
.main-nav .dropdown.open { display: block; }
.main-nav .dropdown li { margin: 0; }
.main-nav .dropdown a {
  display: block;
  padding: .55rem .85rem;
  border-radius: .5rem;
  font-size: .88rem;
  color: var(--concrete-lt);
}
.main-nav .dropdown a:hover {
  background: rgba(255,209,0,.08);
  color: var(--accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
}
.nav-phone:hover { color: var(--accent); }
.nav-phone svg { color: var(--accent); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: .5rem;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-cta .nav-phone { display: none; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0A0A0A;
    border-top: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem 1rem 1.25rem;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav > li { width: 100%; border-bottom: 1px solid var(--border); }
  .main-nav > li:last-child { border-bottom: 0; }
  .main-nav a { padding: .85rem .25rem; }
  .main-nav .dropdown {
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0 0 .5rem 1rem;
    display: none;
  }
  .main-nav .dropdown.open { display: block; }
  .main-nav .has-dropdown:hover .dropdown { display: none; }
  .main-nav .has-dropdown:hover .dropdown.open { display: block; }
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0A0A0A 0%, #111 60%, #0A0A0A 100%);
  overflow: hidden;
  padding: 5rem 0 4rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 15% 50%, rgba(255,209,0,.13) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 15%, rgba(251,191,36,.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 50px, transparent 50px, transparent 90px);
  opacity: .55;
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.40) 50%, rgba(10,10,10,.55) 100%);
  z-index: 1;
}
.hero--video .hero-content,
.hero--video .hero-quote { position: relative; z-index: 2; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: #fff;
}
.hero-content h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  #color: var(--text-lt);
  color: white;
  line-height: 1.75;
  max-width: 38rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  #color: var(--text-lt);
  color: white;
  font-size: .875rem;
}
.hero-trust-item svg { color: var(--accent); }

.hero-quote {
  background: var(--primary-2);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: .25rem;
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Stats Bar ────────────────────────────────────────────────── */
.stats-bar {
  background: var(--primary-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
  text-align: center;
}
.stat-item { padding: .5rem 1rem; }
.stat-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .35rem;
}
.stat-label {
  color: var(--text-mid);
  font-size: .82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  justify-self: center;
  display: none; /* grid handles spacing */
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Services Grid (cards) ────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--primary-2);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  text-align: left;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(255,209,0,.12);
  color: inherit;
}
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .5rem;
}
.service-card h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}
.service-card p {
  color: var(--text-dim);
  font-size: .9rem;
  line-height: 1.65;
  margin: 0;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  margin-top: auto;
  padding-top: .5rem;
}
.service-card:hover .card-link { color: var(--accent-2); }

/* ── Features (Why Us) ────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.5rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--primary-2);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color .25s ease;
}
.feature-item:hover { border-color: var(--accent); }
.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--accent-light) !important;
  color: var(--accent) !important;
  border-radius: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-text h4 {
  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.feature-text p {
  color: var(--text-dim) !important;
  font-size: .9rem;
  line-height: 1.65;
  margin: 0;
}

/* ── Process steps ────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.process-step {
  background: var(--primary-2);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  transition: border-color .25s ease, transform .25s ease;
}
.process-step:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.process-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.process-step h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.process-step p {
  color: var(--text-dim);
  font-size: .9rem;
  line-height: 1.65;
}

/* ── Neighborhoods ────────────────────────────────────────────── */
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
}
.neighborhood-card {
  background: var(--primary-2);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: border-color .25s ease, transform .25s ease;
}
.neighborhood-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  color: inherit;
}
.neighborhood-icon {
  width: 44px;
  height: 44px;
  border-radius: .75rem;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .25rem;
}
.neighborhood-card h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}
.neighborhood-card p {
  color: var(--text-dim);
  font-size: .88rem;
  margin: 0;
}

/* ── CTA banner ───────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #0A0A0A;
  padding: 3rem 0;
}
.cta-banner h2 { color: #0A0A0A; margin: 0 0 .35rem; }
.cta-banner p  { color: rgba(0,0,0,.6); margin: 0; }
.cta-banner h2 span {
  -webkit-text-fill-color: #0A0A0A;
  background: none;
  color: #0A0A0A;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner .btn-outline {
  background: transparent;
  border: 1px solid rgba(0,0,0,.4);
  color: #0A0A0A;
}
.cta-banner .btn-outline:hover {
  background: #0A0A0A;
  color: var(--accent);
  border-color: #0A0A0A;
}
.cta-banner .btn-primary {
  background: #0A0A0A;
  color: #fff;
  border-color: #0A0A0A;
}
.cta-banner .btn-primary:hover {
  background: #fff;
  color: #0A0A0A;
  border-color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* ── Page header (sub-pages) ──────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, #0A0A0A 0%, #141414 60%, #0A0A0A 100%);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 20% 30%, rgba(255,209,0,.10) 0%, transparent 70%);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 40%, var(--accent-2) 60%, transparent);
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  margin: .75rem 0 .75rem;
}
.page-header p {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 38rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.breadcrumb a {
  color: var(--text-mid);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb svg     { color: var(--text-lt); }
.breadcrumb span    { color: #fff; }

/* ── Site Footer ──────────────────────────────────────────────── */
.site-footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 4rem 0 1.75rem;
  color: var(--text-mid);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: var(--text-dim);
  font-size: .9rem;
  line-height: 1.7;
  max-width: 22rem;
  margin: 1.25rem 0;
}
.footer-brand .site-logo { margin-bottom: 0; }

.footer-col h4 {
  color: #fff;
  font-family: var(--font-head);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul a {
  color: var(--text-dim);
  font-size: .9rem;
  text-decoration: none;
}
.footer-col ul a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .85rem;
  font-size: .9rem;
  color: var(--text-dim);
}
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; }
.footer-contact-item a {
  color: var(--text-dim);
  text-decoration: none;
}
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .8rem;
  color: var(--text-lt);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
}

/* ── Quote form / quote card ──────────────────────────────────── */
.quote-section {
  background: var(--primary-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 0;
}
.quote-section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.quote-section-title h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: .65rem;
}
.quote-section-title h2 span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.quote-section-title p { color: var(--text-mid); }
.quote-section .quote-card { max-width: 720px; margin: 0 auto; }

.quote-card {
  background: var(--primary-2);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
}
.quote-card-header {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #0A0A0A;
  padding: 1.5rem 1.75rem;
  text-align: center;
}
.quote-card-header h3 {
  color: #0A0A0A;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: .35rem;
  text-transform: none;
}
.quote-card-header p {
  color: rgba(0,0,0,.7);
  font-size: .88rem;
  margin: 0;
}
.quote-card-header a { color: #0A0A0A; text-decoration: none; }
.quote-card-body { padding: 1.75rem; }

.quote-form .form-group { margin-bottom: 1.1rem; }
.quote-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.quote-form label {
  display: block;
  color: var(--concrete-lt);
  font-size: .8rem;
  font-weight: 500;
  margin-bottom: .45rem;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  background: #0A0A0A !important;
  border: 1px solid var(--border) !important;
  color: #fff !important;
  border-radius: .75rem;
  padding: .8rem 1rem;
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: #444; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(255,209,0,.15);
}
.quote-form select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.quote-form select option {
  background: #141414;
  color: #fff;
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  border-radius: .875rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #0A0A0A;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,209,0,.45);
}
.form-submit-btn:active { transform: translateY(0); }
.form-submit-btn:disabled { opacity: .7; cursor: not-allowed; }

.form-note {
  text-align: center;
  color: var(--text-dim);
  font-size: .78rem;
  margin-top: .85rem;
}

.form-success {
  text-align: center;
  padding: 2rem 1rem;
  color: #fff;
}
.form-success svg {
  color: var(--accent);
  margin: 0 auto 1rem;
  display: block;
}
.form-success h4 { color: #fff; }
.form-success p  { color: var(--text-mid) !important; }

.form-error {
  background: rgba(220,38,38,.1);
  border: 1px solid rgba(220,38,38,.3);
  border-radius: .5rem;
  padding: .75rem 1rem;
  color: #f87171 !important;
}

/* ── Generic info / alert box ────────────────────────────────── */
.alert-box {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: .75rem;
  padding: 1rem 1.25rem;
  color: var(--text-mid);
}
.alert-box svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.alert-box p { color: var(--text-mid); margin: 0; font-size: .9rem; line-height: 1.65; }
.alert-box strong { color: #fff; }

/* ── Sidebar (service / neighborhood pages) ──────────────────── */
.sidebar-card {
  background: var(--primary-2);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}
.sidebar-card h4 {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .85rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.sidebar-services {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.sidebar-services a {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-mid);
  text-decoration: none;
  padding: .55rem .65rem;
  border-radius: .5rem;
  font-size: .9rem;
  transition: background .2s ease, color .2s ease;
}
.sidebar-services a:hover { background: rgba(255,209,0,.07); color: var(--accent); }
.sidebar-services a.active { background: var(--accent-light); color: var(--accent); }
.sidebar-services svg { color: var(--accent); flex-shrink: 0; }

/* ── Lists: checklist / values / contact info ────────────────── */
.checklist {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin: 1rem 0;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--text-mid);
  font-size: .95rem;
}
.checklist li svg { color: var(--accent); flex-shrink: 0; }
.checklist li a { color: var(--text-mid); }
.checklist li a:hover { color: var(--accent); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.value-item {
  background: var(--primary-2);
  border: 1px solid var(--border);
  border-radius: .875rem;
  padding: 1.1rem 1.25rem;
}
.value-item h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: .35rem;
}
.value-item p {
  color: var(--text-dim);
  font-size: .88rem;
  margin: 0;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin: 1.5rem 0;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: .875rem;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-text h4 {
  color: var(--text-mid);
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .25rem;
}
.contact-info-text a,
.contact-info-text p {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
}
.contact-info-text a:hover { color: var(--accent); }

/* ── Page grids ───────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid, .contact-grid, .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* About text overrides */
.about-grid p { color: var(--text-mid); }
.about-grid h3 { color: #fff; }
.about-grid h2 { color: #fff; }

/* ── Article / rich-text content (service body, about_us) ────── */
.section .container > div p,
.about-grid > div p,
.service-detail-grid > div p {
  color: var(--text-mid);
}
.section h2, .section h3 { color: #fff; }
.about-grid h2 span,
.section-title span,
.quote-section-title h2 span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Mobile sticky CTA ────────────────────────────────────────── */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: .75rem 1rem;
  z-index: 90;
  display: none;
}
.mobile-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.mobile-cta .btn { padding: .85rem 0; font-size: .9rem; }

@media (max-width: 768px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ── Misc fixes ───────────────────────────────────────────────── */
.section.bg-dark h2,
.section.bg-light h2 { color: #fff; }
.section.bg-dark .section-subtitle,
.section.bg-light .section-subtitle { color: var(--text-mid); }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* ── Bootstrap-compatible accordion for service content ── */
.accordion { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header { margin: 0; }
.accordion-button {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 1rem 1.25rem; border: none; background: var(--bg-light);
  font-family: var(--font-head); font-size: .95rem; font-weight: 600;
  text-align: left; cursor: pointer; text-transform: uppercase; letter-spacing: .03em;
  color: var(--text); transition: var(--transition);
}
.accordion-button:hover { background: var(--primary-3); }
.accordion-button::after {
  content: '+'; font-size: 1.2rem; font-weight: 700; color: var(--accent);
  margin-left: 1rem; flex-shrink: 0; transition: var(--transition);
}
.accordion-button:not(.collapsed)::after { content: '−'; }
.accordion-collapse { display: none; }
.accordion-collapse.show { display: block; }
.accordion-body { padding: 0 1.25rem 1rem; font-size: .92rem; color: var(--text-mid); line-height: 1.7; }

/* ── Bootstrap-compatible grid for DB-generated content (image galleries) ──
   Service/neighborhood content stored in the DB uses Bootstrap markup
   (.row .g-2 > .col-6 .col-md-3 > img.img-fluid.rounded). This site ships a
   custom stylesheet rather than Bootstrap, so those classes are defined here. */
.row { display: flex; flex-wrap: wrap; }
.row.g-2 { margin: -0.25rem; }
.row.g-2 > [class*="col-"] { padding: 0.25rem; }

.col-6  { flex: 0 0 50%;  max-width: 50%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

@media (min-width: 768px) {
  .col-md-3  { flex: 0 0 25%;     max-width: 25%; }
  .col-md-4  { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-md-6  { flex: 0 0 50%;     max-width: 50%; }
  .col-md-8  { flex: 0 0 66.667%; max-width: 66.667%; }
  .col-md-12 { flex: 0 0 100%;    max-width: 100%; }
}

.img-fluid { max-width: 100%; height: auto; }
.rounded { border-radius: var(--radius); }
.img-fluid[style*="object-fit"] { max-width: 100%; }