/* ===== 513 Plumbing — Footer & Mobile Sticky Call Bar ===== */

.site-footer {
  background: #060d18;
  color: #a8bdd4;
}

.footer-top {
  padding: 60px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Footer column 1 — Brand */
.footer-brand .footer-logo .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.footer-brand .footer-logo .brand-name .accent { color: var(--orange); }

.footer-brand .footer-logo .brand-tag {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #7a9ab8;
  margin-top: 4px;
}

.footer-tagline {
  font-style: italic;
  font-size: 13px;
  color: #7a9ab8;
  margin: 16px 0 20px;
  max-width: 320px;
}

.footer-nap {
  font-size: 14px;
  line-height: 1.7;
}

.footer-nap a[href^="tel"] {
  color: var(--orange);
  font-weight: 700;
}

.footer-nap a[href^="tel"]:hover {
  color: var(--orange-dark);
}

.footer-nap .hours {
  margin-top: 8px;
}

.footer-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 12px;
  background: rgba(242, 106, 33, 0.15);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
}

/* Footer columns 2, 3, 4 */
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
}

.footer-col ul {
  list-style: none;
}

.footer-col a {
  color: #a8bdd4;
  font-size: 14px;
  padding: 6px 0;
  display: block;
}

.footer-col a:hover {
  color: var(--orange);
}

/* Footer bottom */
.footer-bottom-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #7a9ab8;
}

.footer-bottom a {
  color: #7a9ab8;
}

.footer-bottom a:hover {
  color: var(--orange);
}

/* Mobile sticky call bar */
.mobile-call-bar,
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 999;
  background: var(--orange);
  padding: 15px;
  text-align: center;
}

.mobile-call-bar a,
.mobile-cta-bar a {
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}

.mobile-call-bar a:hover,
.mobile-cta-bar a:hover {
  color: var(--white);
  opacity: 0.95;
}

@media (max-width: 768px) {
  .mobile-call-bar,
  .mobile-cta-bar { display: block; }
}

@media (min-width: 769px) {
  .mobile-call-bar,
  .mobile-cta-bar { display: none; }
}
