:root {
  --dark: #1c2430;
  --accent: #2563eb;
  --btn-dark: #16202e;
  --light: #f5f7fa;
  --text: #222;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.65;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--accent);
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header / nav */
header.site-header {
  background: #fff;
  border-bottom: 1px solid #e2e6ea;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.logo {
  font-weight: bold;
  font-size: 1.15rem;
  color: var(--dark);
  text-decoration: none;
}
.logo img {
  max-height: 52px;
}
nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  align-items: center;
}
nav.main-nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
}
nav.main-nav a:hover {
  color: var(--accent);
}
.dropdown {
  position: relative;
}
.dropdown > a::after {
  content: " \25BE";
  font-size: 0.8em;
}
.dropdown-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e2e6ea;
  min-width: 250px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  padding: 6px 0;
  list-style: none;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block !important;
}
.dropdown-menu li a {
  display: block;
  padding: 9px 16px;
  font-weight: 500;
}
.dropdown-menu li a:hover {
  background: var(--light);
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(640px, 78vh, 900px);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay-box {
  background: rgba(10, 15, 25, 0.72);
  color: #fff;
  text-align: center;
  padding: 42px 48px;
  max-width: 640px;
  margin: 40px 20px;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.hero-business-name {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
}
.hero-phone {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin: 18px 0 22px;
}
.hero-phone:hover {
  text-decoration: underline;
}
.btn-contact {
  display: inline-block;
  background: var(--btn-dark);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 30px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 3px;
}
.btn-contact:hover {
  background: #000;
}

/* Trust bar — sits between hero and heading strip */
.trust-bar {
  background: var(--accent);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  flex-wrap: wrap;
}
.trust-bar span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Page heading strip below trust bar */
.heading-strip {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 22px 20px;
}
.heading-strip h1 {
  font-size: 1.65rem;
  font-weight: 700;
}

/* Body */
main .container {
  padding: 34px 20px 10px;
}
main h2 {
  font-size: 1.45rem;
  margin: 34px 0 12px;
  color: var(--dark);
}
main h3 {
  font-size: 1.15rem;
  margin: 24px 0 8px;
  color: var(--dark);
}
main p {
  margin: 0 0 16px;
}
main ol:not(.process-steps) {
  margin: 0 0 16px 24px;
}
main ol:not(.process-steps) li {
  margin-bottom: 8px;
}

/* Services grid — 2×2 card layout on homepage */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 24px 0 38px;
}
.service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), #60a5fa);
  flex-shrink: 0;
}
.service-card:hover {
  box-shadow: 0 10px 32px rgba(37, 99, 235, 0.16);
  transform: translateY(-4px);
}
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: #eff6ff;
  border-radius: 50%;
  margin: 22px auto 0;
  color: var(--accent);
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: #fff;
}
.service-icon svg {
  width: 32px;
  height: 32px;
}
.service-card-body {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
}
.service-card h3 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
.service-card h3 a:hover {
  color: var(--accent);
}
.service-card p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid var(--accent);
  border-radius: 4px;
  padding: 7px 16px;
  align-self: flex-start;
  transition: background 0.2s ease, color 0.2s ease;
}
.card-link:hover {
  background: var(--accent);
  color: #fff;
}

/* Process steps — step card layout with accent left border */
.process-steps {
  list-style: none;
  margin: 24px 0 36px;
  padding: 0;
  counter-reset: steps;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 44px;
  bottom: 24px;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent), #bfdbfe);
  border-radius: 3px;
  z-index: 0;
}
.process-steps li {
  counter-increment: steps;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-left: 5px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px 18px 14px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  margin-left: 58px;
}
.process-steps li:hover {
  box-shadow: 0 6px 22px rgba(37, 99, 235, 0.14);
  transform: translateX(4px);
}
.process-steps li::before {
  content: counter(steps);
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  position: absolute;
  left: -58px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--accent);
  z-index: 1;
}
.process-steps li:hover::before {
  transform: translateY(-50%) scale(1.08);
}
.process-steps li strong {
  display: block;
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: 3px;
}

/* Before / after pair */
.before-after {
  display: flex;
  gap: 16px;
  margin: 28px 0;
}
.before-after figure {
  flex: 1;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.before-after figcaption {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
  font-weight: 600;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 30px 0;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #dfe4ea;
  border-radius: 6px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  font-style: italic;
}

/* FAQ accordion */
.faq {
  margin: 10px 0 30px;
}
.faq details {
  border: 1px solid #dfe4ea;
  border-radius: 4px;
  margin-bottom: 10px;
  background: #fff;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 16px;
  color: var(--dark);
}
.faq details p {
  padding: 0 16px 14px;
}

/* CTA section */
.cta-section {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  margin-top: 36px;
}
.cta-section h2 {
  color: #fff;
  margin-top: 0;
}
.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.cta-section a.btn-contact {
  background: var(--accent);
  border: none;
  padding: 15px 34px;
  font-size: 1rem;
}
.cta-section a.btn-contact:hover {
  background: #1d4ed8;
}
.cta-section a.cta-phone {
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  display: inline-block;
}
.cta-section a.cta-phone:hover {
  text-decoration: underline;
}

/* Contact page layout */
.contact-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin: 26px 0;
}
.contact-grid .contact-form-col {
  flex: 1 1 420px;
}
.contact-grid .contact-map-col {
  flex: 1 1 420px;
}
form.lead-form label {
  display: block;
  font-weight: 600;
  margin: 12px 0 4px;
}
form.lead-form input,
form.lead-form textarea {
  width: 100%;
  padding: 11px;
  border: 1px solid #c6ccd4;
  border-radius: 4px;
  font: inherit;
}
form.lead-form textarea {
  min-height: 120px;
}
form.lead-form button {
  margin-top: 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}
.map-placeholder {
  border: 2px dashed #b7c0cc;
  background: var(--light);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #555;
}
.contact-map-col iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

/* Footer */
footer.site-footer {
  background: #12181f;
  color: #cfd6de;
  padding: 40px 0 90px;
  font-size: 0.95rem;
  border-top: 4px solid var(--accent);
}
footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
footer .footer-col {
  flex: 1 1 240px;
}
footer h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1rem;
}
footer ul {
  list-style: none;
}
footer ul li {
  margin-bottom: 6px;
}
footer a {
  color: #9db4d4;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
.footer-disclosure {
  max-width: 1100px;
  margin: 26px auto 0;
  padding: 16px 20px 0;
  border-top: 1px solid #2a3340;
  font-style: italic;
  color: #aab4bf;
}
.partner-links {
  max-width: 1100px;
  margin: 14px auto 0;
  padding: 0 20px;
  color: #8a97a5;
  font-size: 0.85rem;
}

/* Sticky mobile footer quick-quote bar */
.sticky-quote {
  display: none;
}
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 10px;
  }
  .nav-toggle {
    display: block;
  }
  nav.main-nav {
    display: none;
    width: 100%;
  }
  nav.main-nav.open {
    display: block;
  }
  nav.main-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  nav.main-nav ul li {
    border-top: 1px solid #eef1f4;
  }
  nav.main-nav ul li a {
    display: block;
    padding: 12px 4px;
  }
  .dropdown-menu {
    position: static;
    display: block;
    border: none;
    box-shadow: none;
    padding-left: 14px;
  }
  .before-after {
    flex-direction: column;
  }
  .hero {
    min-height: clamp(480px, 70vh, 720px);
  }
  .hero-business-name {
    font-size: 1.5rem;
  }
  .hero-phone {
    font-size: 1.35rem;
  }
  .hero-overlay-box {
    padding: 28px 22px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card-body {
    padding: 14px 18px 20px;
  }
  .trust-bar {
    gap: 16px;
    font-size: 0.88rem;
  }
  .cta-actions {
    flex-direction: column;
    gap: 14px;
  }
  .process-steps {
    padding-left: 0;
  }
  .process-steps::before {
    left: 20px;
  }
  .process-steps li {
    margin-left: 46px;
  }
  .process-steps li::before {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
    left: -46px;
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--accent);
  }
  .sticky-quote {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    color: #fff;
    z-index: 50;
    box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.3);
  }
  .sticky-quote-toggle {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 13px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
  }
  .sticky-quote-form {
    display: none;
    padding: 12px 14px 16px;
  }
  .sticky-quote.open .sticky-quote-form {
    display: block;
  }
  .sticky-quote-form input,
  .sticky-quote-form textarea {
    width: 100%;
    padding: 9px;
    margin-bottom: 8px;
    border: none;
    border-radius: 3px;
    font: inherit;
  }
  .sticky-quote-form textarea {
    min-height: 60px;
  }
  .sticky-quote-form button {
    width: 100%;
    background: #fff;
    color: var(--dark);
    border: none;
    padding: 11px;
    font-weight: 700;
    border-radius: 3px;
    cursor: pointer;
  }
  footer.site-footer {
    padding-bottom: 120px;
  }
}
