/* Footer Background */
.lux-footer {
  background: #0c0c0c;
  color: #fff;
  padding: 60px 20px 25px;
  font-family: 'Poppins', sans-serif;
  border-top: 2px solid #bfa26e;
}

/* Footer Container Layout */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Columns */
.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h3 {
  font-size: 18px;
  color: #bfa26e;
  margin-bottom: 15px;
}

/* Logo Styling */
.footer-logo {
  width: 160px;
  filter: brightness(0.9);
}

.tagline {
  margin-top: 10px;
  font-size: 14px;
  opacity: .8;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ddd;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #bfa26e;
}

/* Contact Icons */
.contact-info li {
  font-size: 14px;
  opacity: .85;
}

/* Social Icons */
.social-icons a {
  font-size: 20px;
  color: #bfa26e;
  margin-right: 12px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 13px;
  opacity: 0.7;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-icons a {
    font-size: 22px;
  }
}
