/* ========================================
   FOOTER
======================================== */

.site-footer {
  background: #1A1717;
  color: #fff;
  padding-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* INNER LAYOUT */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

/* LOGO */
.footer-logo {
  font-family: 'Army', sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
}

/* ADDRESS */
.footer-address {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
}

/* SOCIALS */
.footer-socials {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-socials a {
  font-size: 13px;
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: #CF1F2E;
}

/* NAV */
.footer-col h4 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #CF1F2E;
}

/* CTA */
.footer-col--cta p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 12px;
}

.footer-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #CF1F2E;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.footer-btn:hover {
  background: #a81824;
  transform: translateY(-2px);
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: #888;
}

.footer-bottom a {
  color: #bbb;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #CF1F2E;
}

.footer-socials {
  display: flex;
  gap: 20px;
  justify-content:flex-start;
  align-items: flex-start;
}

.footer-socials a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-socials i {
  font-size: 18px;
}

/* Hover effects */
.footer-socials a:hover {
  color: #CF1F2E;
  transform: translateY(-2px);
}

/* Optional: brand colors on hover */
.footer-socials a:hover .fa-facebook-f {
  color: #1877f2;
}

.footer-socials a:hover .fa-instagram {
  color: #e4405f;
}

.footer-socials a:hover .fa-youtube {
  color: #ff0000;
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 992px){

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }

}