.site-footer {
  margin-top: auto;
  padding: 4rem 0 2rem;
  background: var(--background) !important;
  color: var(--foreground);
  border-top: none;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.footer-brand,
.footer-links,
.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 32px;
  width: auto;
}

.footer-tagline,
.footer-address,
.footer-phone,
.footer-links a {
  color: var(--text-muted);
}

.footer-tagline {
  max-width: 250px;
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
}

.footer-address {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-style: normal;
  line-height: 1.5;
}

.footer-email {
  background: linear-gradient(90deg, var(--accent-start) 0%, var(--accent-end) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-size: 0.85rem;
  transition: opacity 0.2s;
}

.footer-email:hover {
  opacity: 0.8;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer-social-icon:hover {
  background: var(--primary);
  color: #000;
  transform: translateY(-2px);
}

.footer-social-icon svg {
  display: block;
}

.footer-links h4 {
  margin: 0 0 0.5rem;
  color: var(--foreground);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-cta {
  align-items: flex-start;
}

.footer-phone {
  font-size: 0.9rem;
}

.footer-copy {
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

@media (max-width: 1199px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-top: 3rem;
  }
}
