#footer {
  background: var(--deep-navy);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(0,245,196,0.06);
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(0,245,196,0.06);
}

.footer-tagline {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg, rgba(248,248,244,0.35) 0%, #00F5C4 50%, rgba(248,248,244,0.35) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.75rem 0 0.5rem;
}

.footer-address {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(248,248,244,0.25);
  line-height: 1.6;
}

.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1.25rem;
}

.footer-links,
.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a,
.footer-contact-col a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(248,248,244,0.30);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact-col a:hover {
  color: var(--gold);
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.5rem;
  color: rgba(0,245,196,0.5) !important;
  font-weight: 400;
}

.footer-wa:hover {
  color: var(--gold) !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(248,248,244,0.2);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-slogan {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, rgba(248,248,244,0.3) 0%, #00F5C4 50%, rgba(248,248,244,0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-bottom a {
  color: rgba(248,248,244,0.3);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 48px;
  height: 48px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}
