/* Modern Footer Styles */
.footer {
  background: #131313;
  color: #fff;
  padding: 48px 0 24px 0;
  font-family: 'Inter', Arial, sans-serif;
  border-top: 1px solid #222;
}
.footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  padding: 0 24px;
}
.footer-col {
  flex: 1 1 180px;
  min-width: 180px;
}
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  font-weight: 700;
  color: #fff;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #fff;
}

/* Newsletter */
.footer-newsletter {
  margin-bottom: 18px;
}
.footer-newsletter p {
  margin-bottom: 12px;
  color: #cfcfcf;
  font-size: 0.98rem;
}
.footer-newsletter-form {
  display: flex;
  gap: 0;
}
.footer-newsletter-form input[type="email"] {
  padding: 8px 12px;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
  font-size: 1rem;
  background: #222;
  color: #fff;
  width: 180px;
}
.footer-newsletter-form button {
  padding: 8px 18px;
  background: #7c3aed;
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-newsletter-form button:hover {
  background: #a78bfa;
  color: #222;
}

.footer-subscribe-msg {
  display: block;
  margin-top: 10px;
  font-size: 0.97rem;
  min-height: 20px;
  line-height: 1.5;
}

/* Social icons */
.footer-social {
  margin-top: 16px;
}
.footer-social a {
  display: inline-block;
  margin-right: 12px;
  color: #cfcfcf;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #fff;
}

/* Bottom row */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 36px;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.93rem;
  color: #999;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.footer-links a {
  color: #999;
  margin-left: 18px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}
