/* ============================================================
   custom.css — your persistent CSS overrides
   Edit this file freely. It loads after styles.css so any
   rule here wins. It is NEVER overwritten by the build.
   ============================================================ */

/* ── Hero photo (real image replacing placeholder) ────────── */
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ── Logo colors ──────────────────────────────────────────── */
.site-header .logo { color: #000000; display: flex; align-items: center; gap: 0.5rem; }
.site-footer .logo { color: var(--primary); }

/* ── Logo image ───────────────────────────────────────────── */
.logo-img {
  height: 2rem;
  width: auto;
  display: block;
}

/* ── Trust bar — mobile: show only Locally Owned, Professional Results, Reliable Every Time */
@media (max-width: 768px) {
  .trust-badge:nth-child(1), /* 5 Stars */
  .trust-badge:nth-child(4)  /* Fast, Clear Communication */
  { display: none; }
}

/* ── Contact form — remove yellow top border ──────────────── */
#contact-form.footer-cta { border-top: 1px solid #e5e5e5; }

/* ── Call Now — hide number on mobile, show on desktop ───── */
@media (max-width: 768px) {
  .call-btn-number { display: none; }
}

/* ── Text Us — never show in header on desktop ────────────── */
@media (min-width: 769px) {
  .header-actions .text-btn { display: none !important; }
}

/* ── "Get a Quote" nav link ────────────────────────────────── */
.nav-quote {
  font-weight: 700;
}

/* ── Mobile header: centered logo + chevron toggle ────────── */
@media (max-width: 768px) {
  /* Stack everything in a column, centered */
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.6rem 0;
  }

  /* Logo: image + name centered on one line */
  .site-header .logo {
    order: 1;
    justify-content: center;
    width: 100%;
  }

  /* Wide narrow hamburger: centered below the logo */
  .nav-toggle {
    order: 2;
    margin: 0 auto;
    width: 3.5rem;
    height: 1.25rem;
    gap: 4px;
    justify-content: center;
    align-items: center;
  }

  /* Wide, thin bars */
  .nav-toggle-bar {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #000000;
    border-radius: 0;
  }
}

/* ── Call Now button (header) ─────────────────────────────── */
.header-actions .call-btn {
  background:    ;   /* button fill color */
  color:         ;   /* text color        */
  border-color:  ;   /* border color      */
  border-radius: ;   /* e.g. 4px, 999px   */
  font-weight:   ;   /* e.g. 700          */
  box-shadow:    ;   /* e.g. none         */
}
.header-actions .call-btn:hover {
  background:   ;    /* hover fill        */
  border-color: ;    /* hover border      */
}

/* ── Footer col list items — match link size when no <a> ─── */
.footer-col ul li {
  color: var(--dark-muted);
  font-size: var(--text-sm);
  cursor: default;
}
.footer-col ul li:hover {
  text-decoration: underline;
}

/* ── Footer copyright — centered, primary yellow ─────────── */
.footer-bottom {
  justify-content: center;
}
.footer-bottom p {
  color: var(--primary);
  text-align: center;
}

/* ── Service area map — web only (hidden on mobile) ──────── */
.service-areas-map-web-only {
  display: none;
}
@media (min-width: 769px) {
  .service-areas-map-web-only {
    display: block;
  }
}

/* Service area map image sizing */
.service-areas-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ── Call Now — non-clickable card on Windows/Linux ──────── */
.call-btn-disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.9;
}
