/* =============================================================================
   V5 Footer + floating actions — site chrome only (all pages)
   ============================================================================= */

/* Redesigned footer â€” V3 warm editorial */
.site-footer {
  background: var(--deep);
  color: rgba(255,255,255,0.72);
  padding: 0;
  border-top: 3px solid var(--green);
}
.footer-top {
  padding: 44px 0 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand .brand-mark { background: var(--green); color: var(--deep); }
.footer-brand .brand-text strong { color: var(--white); }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; }
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  text-decoration: none;
}
.footer-logo-link .brand-logo {
  display: block;
  width: min(300px, 100%);
  height: auto;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.footer-social a svg {
  width: 16px;
  height: 16px;
  display: block;
}

.footer-col h4 {
  color: var(--green);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col li + li { margin-top: 8px; }
.footer-col a { font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-map-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  margin-bottom: 14px;
}
.footer-map {
  display: block;
  width: 100%;
  height: 180px;
  border: 0;
}
.footer-map-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
}
.footer-map-logos img {
  height: 38px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.78rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.5);
}
.footer-certs { display: flex; gap: 14px; align-items: center; }
.footer-certs img { height: 50px; width: auto; filter: brightness(0) invert(0.7); }


section.estimate-cta { padding: clamp(48px, 7vw, 80px) 0; }
/* Floating elements */
.quote-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  background: var(--green);
  color: var(--white);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 20px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 0 20px rgba(var(--accent-rgb),0.4);
  transition: padding 0.2s, background 0.2s;
}
.quote-tab:hover { background: var(--green-dark); padding-right: 14px; }

.whatsapp-fab {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 16px));
  bottom: max(16px, env(safe-area-inset-bottom, 16px));
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 28px; height: 28px; }
