﻿


:root {
  --accent:       #F51124;
  --black:        #000000;
  --dark:         #111111;
  --dark-2:       #1a1a1a;
  --dark-3:       #2a2a2a;
  --text:         #222222;
  --text-mid:     #555555;
  --text-light:   #888888;
  --border:       #e5e5e5;
  --bg-light:     #f5f5f5;
  --white:        #ffffff;
  --radius:       8px;
  --radius-lg:    12px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.05);
  --shadow:       0 2px 12px rgba(0,0,0,0.09), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-lg:    0 4px 24px rgba(0,0,0,0.13);
  --transition:   0.18s ease;
  --font:         'Poppins', system-ui, sans-serif;
  --max-width:    1160px;
  --gutter:       24px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-mid);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
h1, h2, h3, h4 {
  font-family: var(--font);
  line-height: 1.2;
  color: var(--text);
  font-weight: 700;
  overflow-wrap: break-word;
}
p { margin-bottom: 1em; overflow-wrap: break-word; }
p:last-child { margin-bottom: 0; }


.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 88px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header h2 { font-size: clamp(24px, 3.2vw, 36px); margin-bottom: 14px; font-weight: 700; }
.section-sub { color: var(--text-light); font-size: 16.5px; line-height: 1.7; }
.section-cta { text-align: center; margin-top: 44px; }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}


.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: var(--font); font-size: 15px; font-weight: 600;
  text-decoration: none; border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { filter: brightness(0.88); transform: translateY(-1px); }
.btn-call { background: var(--accent); color: #fff; font-size: 16px; padding: 14px 32px; border-color: var(--accent); }
.btn-call:hover { filter: brightness(0.88); transform: translateY(-1px); }
.btn-call-large { font-size: 19px; padding: 17px 38px; }
.btn-outline { background: transparent; color: var(--text); border-color: #ccc; font-size: 15px; font-weight: 600; }
.btn-outline:hover { background: var(--text); color: #fff; border-color: var(--text); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); font-size: 15px; font-weight: 600; }
.btn-outline-white:hover { background: #fff; color: var(--text); border-color: #fff; }
.btn-submit {
  width: 100%; background: var(--accent); color: #fff;
  border-color: var(--accent); padding: 15px; font-size: 16px;
  font-weight: 600; border-radius: var(--radius);
}
.btn-submit:hover { filter: brightness(0.88); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }


.hero-text, .form-card, .trust-item,
.about-img-wrap, .about-text, .gallery-item,
.local-header, .local-content, .cta-text, .cta-form-wrap,
.footer-brand, .footer-nav, .footer-services, .footer-contact { min-width: 0; }


.announce-bar { background: var(--dark); padding: 9px var(--gutter); text-align: center; }
.announce-bar p { font-size: 13px; color: rgba(255,255,255,0.7); margin: 0; }
.announce-bar a { color: var(--accent); font-weight: 600; }
@media (max-width: 768px) { .announce-bar { display: none; } }


.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px; gap: 20px;
}
.logo img { height: 40px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: rgba(255,255,255,0.75);
  font-size: 14px; font-weight: 500;
  transition: color var(--transition);
  padding: 4px 0; position: relative;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width var(--transition);
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { width: 100%; }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  font-weight: 600; font-size: 14px;
  padding: 10px 20px; border-radius: var(--radius);
  transition: filter var(--transition); flex-shrink: 0;
}
.header-cta:hover { filter: brightness(0.88); }


.menu-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0;
}
.menu-toggle span {
  display: block; height: 2px; width: 100%;
  background: #fff; border-radius: 2px;
  transition: all 0.25s; transform-origin: center;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.hero {
  position: relative; overflow: hidden;
  min-height: 620px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg,
    rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.40) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1fr) 420px;
  gap: 56px; align-items: center;
  padding-top: 80px; padding-bottom: 80px; width: 100%;
}
.hero-text .eyebrow { color: rgba(255,255,255,0.6); }
.hero-text h1 {
  font-size: clamp(32px, 4.8vw, 52px); color: #fff;
  margin-bottom: 18px; line-height: 1.15; font-weight: 700;
}
.hero-sub {
  color: rgba(255,255,255,0.78); font-size: 17px;
  line-height: 1.65; margin-bottom: 30px; max-width: 480px;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; align-items: flex-start; }
.hero-pills span {
  display: inline-flex; align-items: center; gap: 6px;
  width: auto; flex: 0 0 auto;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 13px; font-weight: 500; white-space: nowrap;
  padding: 6px 14px; border-radius: 100px;
}


.form-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28), 0 4px 16px rgba(0,0,0,0.1);
  scroll-margin-top: 90px;
}
.form-card-header {
  text-align: center; margin-bottom: 22px;
  padding-bottom: 18px; border-bottom: 1px solid var(--border);
}
.form-card-header h2,
.form-card-header h3 { font-size: 24px; color: var(--text); margin: 0; font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; }
@media (min-width: 1025px) {
  .form-card-header h2,
  .form-card-header h3 { font-size: 30px; }
}
.form-card-header h2 em,
.form-card-header h3 em { font-style: normal; color: var(--accent); }
.hp-wrap {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none;
}
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 600; color: var(--text); margin-bottom: 5px; letter-spacing: 0.3px; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font); font-size: 16px; 
  color: var(--text); background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--text); box-shadow: 0 0 0 3px rgba(0,0,0,0.06); }
.form-group textarea { resize: vertical; min-height: 86px; }
.form-note { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 10px; }
.form-status { margin-top: 10px; font-size: 14px; text-align: center; }
.form-status.error { color: #cc0000; }
.form-success { text-align: center; padding: 24px 12px; }
.form-success svg { color: #16a34a; margin: 0 auto 14px; }
.form-success h3 { font-size: 19px; margin-bottom: 8px; color: var(--text); }
.form-success p { font-size: 14px; color: var(--text-light); }
.form-success a { color: var(--accent); font-weight: 600; }


.trust-bar { background: var(--dark-2); }
.trust-inner { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 20px; border-right: 1px solid rgba(255,255,255,0.07);
  justify-content: center;
}
.trust-item:last-child { border-right: none; }
.trust-item svg { color: var(--accent); flex-shrink: 0; }
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong { font-size: 14.5px; font-weight: 600; line-height: 1.2; color: #fff; }
.trust-item span { font-size: 12px; color: rgba(255,255,255,0.48); margin-top: 2px; }


.stats-section { background: var(--dark); }
.stats-inner { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat-item {
  padding: 52px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07); min-width: 0;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font); font-size: clamp(34px, 4vw, 50px);
  font-weight: 800; color: var(--accent);
  line-height: 1; margin-bottom: 10px; overflow-wrap: break-word;
}
.stat-label { font-size: 13.5px; color: rgba(255,255,255,0.5); font-weight: 500; line-height: 1.5; }


.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block; color: var(--text-mid); min-width: 0;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img-wrap { height: 210px; overflow: hidden; }

.card-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.5s ease; }
.service-card:hover .card-img { transform: scale(1.05); }
.card-body { padding: 20px 22px 24px; }
.card-body h3 { font-size: 16.5px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.card-body p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent); font-size: 13.5px; font-weight: 600;
  transition: gap var(--transition);
}
.service-card:hover .card-link { gap: 10px; }


.phone-strip { background: var(--accent); padding: 22px 0; }
.phone-strip-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.phone-strip-text strong { display: block; color: #fff; font-size: 19px; font-weight: 700; margin-bottom: 3px; overflow-wrap: break-word; }
.phone-strip-text p { color: rgba(255,255,255,0.82); font-size: 14px; margin: 0; }
.btn-call-white {
  background: #fff; color: var(--accent);
  border: 2px solid #fff; font-size: 15px; font-weight: 700;
  padding: 13px 28px; border-radius: var(--radius); white-space: nowrap;
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.btn-call-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }


.why-section { background: var(--bg-light); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 30px 26px; border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition); min-width: 0;
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.why-icon {
  width: 46px; height: 46px; border-radius: 8px;
  background: var(--bg-light); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--accent);
}
.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 9px; color: var(--text); }
.why-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }


.pain-section { background: var(--white); }
.pain-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.pain-card {
  background: var(--bg-light); border-radius: var(--radius-lg);
  padding: 30px 26px; border-top: 3px solid var(--accent); min-width: 0;
}
.pain-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: #fff;
}
.pain-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 9px; color: var(--text); overflow-wrap: break-word; }
.pain-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }


.process-section { background: var(--dark); }
.process-section .section-header h2 { color: #fff; }
.process-section .section-sub { color: rgba(255,255,255,0.52); }
.process-section .eyebrow { color: var(--accent); }
.process-steps {
  display: flex; align-items: flex-start;
  justify-content: center; position: relative;
}
.process-step { flex: 1; max-width: 300px; text-align: center; padding: 0 24px; }
.step-num {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  color: var(--accent); margin-bottom: 16px; text-transform: uppercase;
}
.step-icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; color: var(--accent);
  border: 1.5px solid rgba(255,255,255,0.14);
}
.process-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.process-step p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }
.process-connector {
  display: flex; align-items: center; padding-top: 40px;
  color: rgba(255,255,255,0.18); flex-shrink: 0;
}


.about-section { background: var(--white); }
.about-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 60px; align-items: start; }
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  position: sticky;
  top: 100px;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-size: clamp(22px, 2.8vw, 32px); margin-bottom: 18px; }
.about-text p { font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 16px; }
.about-text .btn { margin-top: 8px; }


.gallery-section { background: var(--bg-light); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; background: #ddd; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--large { grid-column: span 2; grid-row: span 2; aspect-ratio: 1/1; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 16px 18px;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: 13.5px; font-weight: 600; }


.testimonials-section { background: var(--dark); }
.testimonials-section .section-header h2 { color: #fff; }
.testimonials-section .section-sub { color: rgba(255,255,255,0.5) !important; }
.accent-eyebrow { color: var(--accent); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.testimonial-card {
  background: rgba(255,255,255,0.05); border-radius: var(--radius-lg);
  padding: 26px 24px; border: 1px solid rgba(255,255,255,0.09);
  transition: background var(--transition), border-color var(--transition);
  display: flex; flex-direction: column; min-width: 0;
}
.testimonial-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); }
.stars { color: #f59e0b; font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.t-quote { color: rgba(255,255,255,0.82); font-size: 14.5px; line-height: 1.7; font-style: italic; margin-bottom: 22px; flex: 1; }
.t-author { display: flex; align-items: center; gap: 11px; border-top: 1px solid rgba(255,255,255,0.09); padding-top: 16px; }
.t-avatar {
  width: 38px; height: 38px; border-radius: 50%; min-width: 38px;
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.t-author strong { display: block; color: #fff; font-size: 13.5px; font-weight: 600; }
.t-author span { color: rgba(255,255,255,0.45); font-size: 12.5px; }


.local-section { background: var(--white); }
.local-inner { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: 72px; align-items: start; }
.local-header { position: sticky; top: 90px; }
.local-header h2 { font-size: clamp(22px, 2.8vw, 32px); margin-bottom: 0; }
.local-content p { font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 18px; }
.local-content p:last-child { margin-bottom: 0; }


.areas-section { background: var(--bg-light); }
.areas-chips { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-top: 8px; }
.area-chip {
  display: inline-block; background: #fff;
  border: 1.5px solid var(--border); color: var(--text-mid);
  font-size: 13.5px; font-weight: 500; padding: 7px 16px; border-radius: 100px;
  transition: all var(--transition); cursor: default;
}
.area-chip:hover { border-color: var(--accent); color: var(--accent); }


.faq-section { background: var(--white); }
.faq-container { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: 9px; }
.faq-item {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--text); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; font-weight: 600; font-size: 15px; color: var(--text);
  cursor: pointer; list-style: none; user-select: none; transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg-light); }
.faq-icon {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--border); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-left: 16px;
  position: relative; transition: border-color var(--transition);
}
.faq-item[open] .faq-icon { border-color: var(--text); }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: currentColor; border-radius: 2px; }
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after  { width: 2px; height: 10px; transition: transform var(--transition); }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-body { padding: 0 22px 20px; }
.faq-body p { font-size: 14.5px; color: var(--text-mid); line-height: 1.75; margin: 0; }


.cta-section { background: var(--dark-2); padding: 96px 0; }
.cta-inner { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 60px; align-items: center; }
.cta-text h2 { font-size: clamp(26px, 3.2vw, 40px); color: #fff; margin-bottom: 16px; }
.cta-text p { color: rgba(255,255,255,0.68); font-size: 15.5px; margin-bottom: 28px; line-height: 1.7; }
.cta-sub { margin-top: 14px !important; font-size: 13.5px !important; color: rgba(255,255,255,0.38) !important; }


.legal-page { padding: 60px 0 80px; }
.legal-page h1 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 8px; }
.legal-page .legal-date { color: var(--text-light); font-size: 13.5px; margin-bottom: 40px; }
.legal-body { max-width: 760px; }
.legal-body h2 { font-size: 19px; font-weight: 700; margin: 36px 0 12px; color: var(--text); }
.legal-body p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.legal-body ul { padding-left: 20px; margin-bottom: 14px; }
.legal-body ul li { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 6px; list-style: disc; }
.legal-body a { color: var(--accent); text-decoration: underline; }


.site-footer { background: #0d0d0d; color: rgba(255,255,255,0.6); }
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1.4fr) minmax(0, 1.4fr);
  gap: 48px; padding-top: 60px; padding-bottom: 44px;
}
.footer-brand p { font-size: 13.5px; line-height: 1.7; margin: 14px 0 12px; }
.footer-logo { margin-bottom: 0; }
.footer-phone { display: inline-block; font-weight: 700; font-size: 16px; color: var(--accent); transition: opacity var(--transition); }
.footer-phone:hover { opacity: 0.8; }
.footer-calltext { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 4px; margin-bottom: 0; }
.footer-nav h3, .footer-services h3, .footer-contact h3 {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #fff; margin-bottom: 16px;
}
.footer-nav ul li, .footer-services ul li { margin-bottom: 9px; }
.footer-nav a, .footer-services a { font-size: 13.5px; color: rgba(255,255,255,0.52); transition: color var(--transition); }
.footer-nav a:hover, .footer-services a:hover { color: #fff; }
.footer-contact address p {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: rgba(255,255,255,0.52); margin-bottom: 10px; line-height: 1.6;
}
.footer-contact address p svg { flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,0.3); }
.footer-contact address a { color: rgba(255,255,255,0.52); transition: color var(--transition); }
.footer-contact address a:hover { color: #fff; }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; }
.footer-bar p { font-size: 12.5px; color: rgba(255,255,255,0.28); margin: 0; text-align: center; }
.footer-bar a { color: rgba(255,255,255,0.36); transition: color var(--transition); }
.footer-bar a:hover { color: #fff; }


.mobile-fabs {
  display: none; 
  position: fixed;
  bottom: 20px;
  right: 16px;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.fab-btn {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.32);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  border: none; cursor: pointer; text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  padding: 0;
}
.fab-btn svg { width: 22px; height: 22px; display: block; }
.fab-btn:active { transform: scale(0.93); }
.fab-call { background: var(--accent); color: #fff; }
.fab-call:hover { filter: brightness(0.9); transform: translateY(-2px); }
.fab-form { background: var(--dark); color: #fff; border: 1.5px solid rgba(255,255,255,0.15); }
.fab-form:hover { background: var(--dark-3); transform: translateY(-2px); }


@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr) 380px; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-inner { grid-template-columns: minmax(0, 1fr) 380px; gap: 40px; }
  .about-inner { gap: 48px; }
  .local-inner { grid-template-columns: 1fr; gap: 32px; }
  .local-header { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--large { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
}


@media (max-width: 768px) {
  :root { --gutter: 16px; }
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }

  
  .mobile-fabs { display: flex; }

  
  .main-nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: #111; flex-direction: column; gap: 0;
    padding: 6px 0; border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4); z-index: 100;
  }
  .main-nav.nav-open { display: flex; }
  .main-nav a {
    padding: 14px var(--gutter); font-size: 15px; color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.07); width: 100%;
  }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav a::after { display: none; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }

  
  .hero-inner { grid-template-columns: 1fr; padding-top: 44px; padding-bottom: 52px; gap: 28px; }
  .hero { background-attachment: scroll; min-height: auto; }
  .hero-text h1 { font-size: 28px; }
  .hero-sub { font-size: 15px; }
  .btn-call { font-size: 15px; padding: 13px 22px; }
  .hero-pills span { font-size: 12px; }

  
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 16px 12px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }

  
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 36px 16px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

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

  
  .process-steps { flex-direction: column; align-items: center; gap: 28px; }
  .process-connector { padding-top: 0; transform: rotate(90deg); }
  .process-step { max-width: 100%; padding: 0; }

  
  .about-inner { grid-template-columns: 1fr; gap: 28px; }
  .about-img-wrap { position: static; aspect-ratio: 16/9; }

  
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--large { grid-column: span 2; aspect-ratio: 16/9; }
  .gallery-overlay { opacity: 1; }

  
  .local-inner { grid-template-columns: 1fr; gap: 24px; }

  
  .phone-strip { padding: 18px 0; }
  .phone-strip-inner { flex-direction: column; text-align: center; gap: 14px; }

  
  .pain-grid { grid-template-columns: 1fr; }

  
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .btn-call-large { font-size: 17px; padding: 14px 26px; }

  
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-top: 44px; padding-bottom: 28px; }

  
  .site-footer { padding-bottom: 80px; }
  .faq-section, .cta-section { padding-bottom: 96px; }
}


@media (max-width: 480px) {
  :root { --gutter: 14px; }
  .hero-text h1 { font-size: 26px; }
  
  .hero-pills { flex-direction: row; flex-wrap: wrap; gap: 6px; align-items: flex-start; }
  .hero-pills span { font-size: 11.5px; padding: 5px 10px; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .trust-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .trust-item:last-child { border-bottom: none; }
  .form-card { padding: 24px 18px; }
  .services-grid { gap: 14px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .phone-strip-inner { flex-direction: column; text-align: center; }
  .fab-btn { width: 50px; height: 50px; }
}




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


.page-hero {
  position: relative; overflow: hidden;
  padding: 120px 0 80px;
  background-color: var(--dark);
  color: #fff;
  text-align: left;
}
.page-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.page-hero--solid { background-color: var(--dark); }
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.78) 100%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
  margin: 14px 0 18px;
  font-weight: 700;
}
.page-hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 680px;
}
.page-hero .btn-call { margin-top: 8px; }


.breadcrumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.breadcrumbs a {
  color: rgba(255,255,255,0.78);
  transition: color var(--transition);
}
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span[aria-current="page"] { color: #fff; font-weight: 500; }
.breadcrumbs span[aria-hidden="true"] { color: rgba(255,255,255,0.35); }


.values-section { background: var(--bg-light); }
.values-section .why-card { background: #fff; }


.contact-section { background: #fff; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 14px;
  color: var(--text);
}
.contact-intro {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 36px;
  line-height: 1.7;
}
.contact-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: 1px solid var(--border); }
.contact-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
}
.contact-detail h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.contact-detail p, .contact-detail address {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}
.contact-detail p + p { margin-top: 6px; }
.contact-link {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
  transition: filter var(--transition);
}
.contact-link:hover { filter: brightness(0.85); }
.contact-phone { font-size: 22px; letter-spacing: 0.3px; }
.contact-hours strong { color: var(--text); display: inline-block; margin-bottom: 4px; }

.form-card--lg { padding: 36px 30px; }
.form-card-sub {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 8px;
  margin-bottom: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.optional {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-light);
  margin-left: 4px;
}
.form-group select {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition);
  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='%23888' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}


.services-grid--all {
  grid-template-columns: repeat(3, 1fr);
}


.service-detail-section { background: #fff; }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: start;
}
.service-detail-body h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 22px;
  color: var(--text);
}
.service-detail-body p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.service-detail-aside { position: sticky; top: 24px; }
.service-benefits {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
}
.service-benefits h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text);
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefits-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.5;
}
.benefits-list li svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 3px;
}
.aside-note {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}


.related-services-section { background: var(--bg-light); }
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.related-card {
  display: flex; align-items: center; justify-content: space-between;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}
.related-card::after {
  content: "→";
  font-size: 18px;
  color: var(--accent);
  transition: transform var(--transition);
}
.related-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.related-card:hover::after { transform: translateX(4px); }


@media (max-width: 1024px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 36px; }
  .service-detail-aside { position: static; }
  .services-grid--all { grid-template-columns: repeat(2, 1fr); }
  .related-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .page-hero { padding: 90px 0 60px; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid--all { grid-template-columns: 1fr; }
  .related-services-grid { grid-template-columns: 1fr; }
  .contact-phone { font-size: 19px; }
}




.nav-item.nav-has-dropdown { position: relative; display: inline-block; }
.nav-services-trigger { display: inline-flex; align-items: center; gap: 4px; }
.nav-chevron { transition: transform var(--transition); }
.nav-has-dropdown:hover .nav-chevron,
.nav-has-dropdown:focus-within .nav-chevron { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  min-width: 280px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 1000;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 14.5px;
  color: var(--text);
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-dropdown a:hover { background: var(--bg-light); color: var(--accent); }
.nav-dropdown-all {
  margin-top: 6px;
  border-top: 1px solid var(--border);
  padding-top: 14px !important;
  font-weight: 600;
  color: var(--accent) !important;
}


@media (max-width: 1024px) {
  .nav-has-dropdown { display: block; width: 100%; }
  
  .nav-services-trigger {
    display: block !important;
    padding: 14px var(--gutter) !important;
    font-size: 15px !important;
    color: rgba(255,255,255,0.8) !important;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    width: 100%;
  }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.03);
    padding: 4px 0;
    min-width: auto;
    border-radius: 0;
  }
  .nav-chevron { display: none; }
  .nav-dropdown a {
    padding: 10px var(--gutter) 10px calc(var(--gutter) + 18px) !important;
    font-size: 13.5px;
    color: rgba(255,255,255,0.65) !important;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .nav-dropdown a:hover { background: rgba(255,255,255,0.06); }
  .nav-dropdown-all {
    color: var(--accent) !important;
    font-weight: 600;
    border-top: 1px solid rgba(255,255,255,0.07) !important;
  }
}


.longform-section { background: #fff; }
.longform-section--alt { background: var(--bg-light); }
.longform-inner { max-width: 820px; margin: 0 auto; text-align: left; }
.longform-inner h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 18px;
  color: var(--text);
}
.longform-inner p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
  text-align: left;
}
.longform-inner h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text);
}
.longform-inner ul {
  margin: 12px 0 20px;
  padding-left: 24px;
}
.longform-inner ul li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  list-style: disc;
  margin-bottom: 6px;
}


.section-sub p {
  text-align: left;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
}
.section-sub > p:only-child { text-align: center; }


.longform-with-image {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.longform-with-image--reverse { grid-template-columns: 1.4fr 1fr; }
.longform-with-image--reverse .longform-image-wrap { order: 2; }
.longform-image-wrap {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.longform-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.longform-with-image .longform-inner { max-width: none; margin: 0; }
@media (max-width: 1024px) {
  .longform-with-image, .longform-with-image--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .longform-with-image--reverse .longform-image-wrap { order: 0; }
  .longform-image-wrap { position: static; aspect-ratio: 16/9; }
}


.gmb-embed-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 18px;
  background: var(--bg-light);
  transition: filter var(--transition);
}
.gmb-embed-wrap a { display: block; }
.gmb-embed-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.gmb-embed-wrap:hover { filter: brightness(0.95); }
.gmb-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 10px;
  transition: filter var(--transition);
}
.gmb-link:hover { filter: brightness(0.85); }


.faq-section--extended .faq-list { max-width: 820px; margin: 0 auto; }


.not-found-main { padding: 80px 0 120px; background: var(--bg-light); min-height: 70vh; }
.not-found-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.not-found-code {
  font-size: clamp(80px, 14vw, 140px);
  font-weight: 800; line-height: 1; color: var(--accent);
  margin: 0 0 8px; letter-spacing: -0.02em;
}
.not-found-inner h1 {
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--text); margin-bottom: 14px;
}
.not-found-lede {
  font-size: 17px; color: var(--text-mid);
  line-height: 1.65; margin-bottom: 32px;
}
.not-found-search {
  display: flex; gap: 8px; align-items: center;
  max-width: 460px; margin: 0 auto 36px;
}
.not-found-search input[type="search"] {
  flex: 1; padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 16px; font-family: var(--font);
  background: #fff; color: var(--text);
}
.not-found-search input[type="search"]:focus {
  outline: none; border-color: var(--accent);
}
.not-found-search button {
  background: var(--accent); color: #fff; border: none;
  width: 48px; height: 48px; border-radius: var(--radius);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.not-found-search button:hover { filter: brightness(0.9); }
.not-found-subhead {
  font-size: 16px; color: var(--text-light); font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.not-found-links {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px; margin: 0 0 36px; padding: 0; list-style: none; text-align: left;
}
.not-found-links li { margin: 0; }
.not-found-links a {
  display: block; padding: 12px 16px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-weight: 500; font-size: 15px;
  transition: all var(--transition);
}
.not-found-links a:hover {
  border-color: var(--accent); color: var(--accent);
  transform: translateY(-1px); box-shadow: var(--shadow-sm);
}
.not-found-cta {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
