/* FOOTER STYLES */

.site-footer {
  background: linear-gradient(135deg, #212529, #343a40);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #ffc107;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ffc107;
  padding-bottom: 0.5rem;
}

.footer-section p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-list i {
  color: #ffc107;
  margin-top: 0.2rem;
  min-width: 16px;
}

.contact-list a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-list a:hover {
  color: #ffc107;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffc107;
  transform: translateX(5px);
}

.payment-logos {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.payment-logos a {
  display: block;
  transition: transform 0.3s ease;
}

.payment-logos a:hover {
  transform: scale(1.1);
}

.payment-logos img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.payment-logos a:hover img {
  filter: brightness(1) invert(0);
}

.secure-payment {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.secure-payment i {
  color: #28a745;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-legal {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .payment-logos {
    justify-content: center;
  }
}