/* ============================================
   GV Construction — Modern Dark Footer
   ============================================ */

.site-footer {
  background: linear-gradient(135deg, #1a3553 0%, #122740 100%);
  color: #e6edf5;
  padding: 70px 28px 30px;
  border-top: 3px solid #1ab555;
}

.footer-top {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
}

/* Brand column */
.footer-brand img {
  max-height: 60px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-brand-tagline {
  font-size: 0.95rem;
  color: #a8b8cc;
  line-height: 1.6;
  max-width: 280px;
}

/* Footer column heading */
.footer-col-heading {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: #c8d3e0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}
.footer-col ul li a:hover {
  color: #1ab555;
  padding-left: 4px;
}
.footer-col ul li i {
  color: #1ab555;
  margin-right: 8px;
  width: 16px;
}

/* Social circles */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #e6edf5;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.footer-social a:hover {
  background: #1ab555;
  color: #fff;
  border-color: #1ab555;
  transform: translateY(-3px);
}

/* Footer bottom */
.footer-bottom {
  max-width: 1320px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: #a8b8cc;
}
.footer-legal-links {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.footer-legal-links li a {
  color: #a8b8cc;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal-links li a:hover { color: #1ab555; }

@media (max-width: 720px) {
  .footer-bottom { justify-content: center; text-align: center; }
}
