﻿/* ===== FOOTER STYLES ===== */
.footer {
  background: #1c1c1c;
  color: #bdbdbd;
  font-family: Arial, sans-serif;
  padding: 50px 0 0;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

.footer-box h4 {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-logo {
  max-width: 120px;
  max-height: 80px;
  margin-bottom: 15px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #bdbdbd;
  text-decoration: none;
  font-size: 14px;
}

.footer-box ul li a:hover {
  color: #8dc63f;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border: 1px solid #8dc63f;
  color: #8dc63f;
  text-align: center;
  margin-right: 8px;
  text-decoration: none;
  font-size: 14px;
}

.social-icons a:hover {
  background: #8dc63f;
  color: #000;
}

/* Trust Badges */
.trust {
  margin-top: 15px;
  font-size: 13px;
  color: #9e9e9e;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #333;
  padding: 15px 0;
  text-align: center;
  font-size: 13px;
}

.footer-bottom a {
  color: #8dc63f;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons a {
    margin-bottom: 10px;
  }
}