/* ===================== FOOTER ===================== */
footer { background: #0a0a0a; border-top: 1px solid #222; padding: 60px 0 20px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; margin-bottom: 50px;
}
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: #dbd9d9; line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--dark3); color: #aaa;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all 0.2s;
}
.social-icon:hover { background: var(--red); color: #fff; }
.footer-col h5 {
  font-family: var(--font-main); font-size: 14px; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 20px; color: #fff;
  position: relative; padding-bottom: 12px;
}
.footer-col h5::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px; background: var(--red);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: #dbd9d9; transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }
.app-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.app-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--dark3); border: 1px solid #333;
  padding: 10px 16px; border-radius: 4px; transition: border-color 0.2s;
}
.app-btn:hover { border-color: var(--red); }
.app-btn i { font-size: 22px; color: #fff; }
.app-btn-text small { display: block; font-size: 10px; color: #888; }
.app-btn-text span { display: block; font-size: 14px; color: #fff; font-weight: 500; }
.footer-bottom {
  border-top: 1px solid #1a1a1a; padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: #dbd9d9;
}
.footer-bottom span { color: var(--red); }
