/* AnnuMakeover – Footer */
.footer {
  background: #0a0608;
  color: rgba(255,255,255,0.65);
  padding-top: 72px;
  font-family: 'Poppins', sans-serif;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.footer-brand-name em { font-style: normal; color: #f0d080; }
.footer-brand-tag {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  max-width: 300px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-btn:hover { background: var(--primary, #c9184a); color: #fff; transform: translateY(-2px); }
.footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link::before { content: '›'; color: #c9184a; font-size: 1rem; }
.footer-link:hover { color: #fff; transform: translateX(4px); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact-item a:hover { color: #f0d080; }
.footer-wa-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #25D366;
  border-radius: 9999px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 12px;
  width: fit-content;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.footer-wa-btn:hover { background: #1da851; transform: translateY(-2px); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.28); text-decoration: none; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.55); }
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}
