/* =====================================
   SITE FOOTER — AMGR AUTO GLASS
===================================== */

.site-footer {
  background: linear-gradient(180deg, #020617 0%, #030a1a 100%);
  border-top: 1px solid rgba(148,163,184,.25);
  color: rgba(203,213,225,.92);
  font-size: .95rem;
}

/* Layout */
.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 22px 36px;

  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
}

/* Brand */
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.15rem;
  color: #fff;
}

.footer-brand img {
  height: 38px;
  width: auto;
}

.footer-tagline {
  margin-top: 10px;
  max-width: 340px;
  line-height: 1.5;
  color: rgba(203,213,225,.75);
}

/* Headings */
.site-footer h4 {
  margin: 0 0 10px;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
}

/* Contact */
.footer-contact p {
  margin: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.footer-contact .icon {
  font-size: 1rem;
  opacity: .85;
}

/* Links */
.site-footer a {
  color: rgba(203,213,225,.92);
  text-decoration: none;
  transition: color .15s ease;
}

.site-footer a:hover {
  color: var(--blue);
}

/* Quick links */
.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  width: fit-content;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(148,163,184,.15);
  padding: 16px 22px;
  text-align: center;
  font-size: .85rem;
  color: rgba(203,213,225,.65);
}

/* Mobile */
@media (max-width: 900px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand img {
    height: 34px;
  }
}
