/* ========================================
   ALIMQUICAL - Footer & Social Icons
   ======================================== */

/* === SVG Social Icons === */
.social-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* === Site Footer === */
.site-footer {
  background: linear-gradient(180deg, #0D1B3E 0%, #0a1428 100%);
  color: #fff;
  padding: 50px 20px 24px;
  margin-top: 40px;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Brand */
.footer-brand {
  text-align: center;
  margin-bottom: 32px;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin-bottom: 12px;
  box-shadow: 0 4px 20px rgba(21, 101, 192, 0.4);
}

.footer-brand h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 13px;
  opacity: 0.6;
  letter-spacing: 0.5px;
}

/* Contact Buttons */
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  transition: all 0.25s ease;
}

.footer-contact a:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.footer-contact a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Policy Links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

/* Social Icons Row */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.footer-social a.whatsapp:hover { background: #25D366; border-color: #25D366; }
.footer-social a.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: transparent; }
.footer-social a.facebook:hover { background: #1877F2; border-color: #1877F2; }
.footer-social a.tiktok:hover { background: #010101; border-color: #010101; }
.footer-social a.email:hover { background: #1565C0; border-color: #1565C0; }
.footer-social a.web:hover { background: #0D1B3E; border-color: #1565C0; }

.footer-social a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Copyright */
.footer-copy {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.3px;
}

/* === Responsive === */
@media (max-width: 480px) {
  .footer-contact a { font-size: 12px; padding: 8px 14px; }
  .footer-social a { width: 40px; height: 40px; }
  .footer-social a svg { width: 18px; height: 18px; }
}
