
.site-footer {
  background: #0b0f1a;
  color: #e0e0e0;
  font-size: 14px;
  position: relative;
}

.footer-gold-line {
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #b8962e);
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.footer-box h4 {
  color: #d4af37;
  margin-bottom: 15px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li:hover {
  color: #d4af37;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

/* Social Icons */
.footer-socials {
  margin-top: 15px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  color: #d4af37;
  font-size: 16px;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #fff;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
}

.newsletter-form button {
  background: #d4af37;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.newsletter-form button:hover {
  background: #b8962e;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Scroll Animation */
.reveal-footer {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.reveal-footer.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }
}