/* ============================================
   BM EXPORTS — FOOTER STYLESHEET
   ============================================ */

.site-footer {
  background: var(--dark2);
  color: #aaa;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
}
.footer-bg-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.04), transparent);
  pointer-events: none;
}
.footer-bg-shape.s1 { width: 500px; height: 500px; right: -100px; top: -100px; }
.footer-bg-shape.s2 { width: 300px; height: 300px; left: -50px; bottom: -50px; }

.footer-main { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}

/* Col 1 – Brand */
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo img { height: 50px; filter: brightness(1.2); }
.footer-logo-text strong { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 900; color: #fff; display: block; line-height: 1.2; }
.footer-logo-text span { font-size: 10px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; }
.footer-tagline { font-size: 13.5px; line-height: 1.7; margin-bottom: 24px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social-btn:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); }
.footer-social-btn svg { width: 16px; height: 16px; stroke: #aaa; transition: var(--transition); }
.footer-social-btn:hover svg { stroke: var(--gold); }

/* Col headings */
.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Link lists */
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 13.5px; color: #aaa;
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.footer-link:hover { color: #fff; padding-left: 4px; }
.footer-link svg { width: 12px; height: 12px; stroke: var(--primary); flex-shrink: 0; }

/* Contact info */
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-icon { width: 30px; height: 30px; min-width: 30px; display: flex; align-items: center; justify-content: center; }
.footer-contact-icon svg { width: 16px; height: 16px; stroke: var(--gold); }
.footer-contact-text { font-size: 13px; line-height: 1.6; }
.footer-contact-text a { color: #aaa; transition: var(--transition); }
.footer-contact-text a:hover { color: #fff; }
.footer-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 8px 14px; border-radius: 6px;
  font-size: 12px; font-weight: 600;
  margin-top: 12px; transition: var(--transition);
}
.footer-wa-btn:hover { background: #128C7E; transform: translateY(-2px); }
.footer-wa-btn svg { width: 15px; height: 15px; }

/* Footer bottom */
.footer-bottom {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 18px 0;
}
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 12.5px; color: #666; }
.footer-copy a { color: var(--gold); }
.footer-made-in { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: #666; }

/* Responsive */
@media (max-width: 1199px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-col:nth-child(4) { grid-column: span 1; }
}
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-col:first-child { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col:first-child { grid-column: span 1; }
}
