/* Shared HydroSeal quote banner and site footer.
   Load this file after page-specific styles on every page. */
.cta {
  padding: 90px 0;
  background: linear-gradient(135deg, #0f6ea8, #0b2d4a);
  color: #fff;
}
.cta .shell,
.site-footer .shell {
  box-sizing: border-box;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.cta .cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 55px;
  align-items: center;
}
.cta .kicker {
  color: #aee9fb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}
.cta h2 {
  margin: 14px 0 20px;
  color: #fff;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: -.7px;
}
.cta p {
  max-width: 850px;
  margin: 0 0 24px;
  color: #fff;
  line-height: 1.7;
}
.cta .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}
.cta .btn-green { background: #39bfea; color: #fff; }
.cta .btn-white { background: #fff; color: #0b2d4a; }

.site-footer {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 58px 0 24px;
  background: #0b2d4a;
  color: #d7e5ec;
}
.site-footer__inner { display: block; }
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr .9fr 1.25fr .8fr 1fr;
  gap: 30px;
  align-items: start;
}
.site-footer .footer-grid > div {
  display: block;
  visibility: visible;
  opacity: 1;
}
.site-footer .footer-logo {
  display: block;
  width: 190px;
  height: auto;
  margin-bottom: 18px;
  object-fit: contain;
}
.site-footer .footer-copy {
  display: block;
  max-width: 300px;
  margin: 0;
  color: #b9ccd6;
  font-size: 14px;
  line-height: 1.7;
}
.site-footer .footer-title {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.site-footer .footer-links,
.site-footer .footer-meta {
  display: flex;
  flex-direction: column;
}
.site-footer .footer-links { gap: 10px; }
.site-footer .footer-meta {
  gap: 12px;
  font-size: 13px;
  line-height: 1.5;
}
.site-footer .footer-meta strong { color: #fff; }
.site-footer .footer-hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.site-footer .footer-links a,
.site-footer .footer-meta a,
.site-footer .footer-sitemap-link {
  display: block;
  color: #d7e5ec;
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
}
.site-footer .footer-links a:hover,
.site-footer .footer-meta a:hover,
.site-footer .footer-sitemap-link:hover { color: #39bfea; }
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #a9bec9;
  font-size: 12px;
}
.mobile-contactbar { display: none; }

@media (max-width: 1100px) {
  .site-footer .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .cta { padding: 72px 0; }
  .cta h2 { font-size: 42px; }
  .site-footer { padding-bottom: 84px; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer .footer-brand { grid-column: 1 / -1; }
  .site-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .mobile-contactbar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #0b2d4a;
    border-top: 1px solid rgba(255,255,255,.15);
  }
  .mobile-callbar-btn {
    padding: 16px;
    color: #fff;
    font-weight: 900;
    text-align: center;
  }
  .mobile-callbar-btn + .mobile-callbar-btn {
    border-left: 1px solid rgba(255,255,255,.15);
  }
}
@media (max-width: 480px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; }
}
