.modern-footer {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  font-family: 'Inter', sans-serif;
  padding: 50px 20px 20px;
  text-align: center;
}

/* 🔹 Top Section */
.footer-top h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.footer-top p {
  color: #d0d0d0;
  margin-bottom: 20px;
}

/* Newsletter Form */
.newsletter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}
.newsletter input {
  flex: 1;
  min-width: 220px;
  padding: 12px 15px;
  border: none;
  border-radius: 25px;
  outline: none;
}
.newsletter button {
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  background: #ff5e3a;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}
.newsletter button:hover {
  background: #ff784e;
}

/* 🔹 Main Footer Section */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
  gap: 40px;
  margin-top: 40px;
}

.footer-logo img {
  width: 130px;
}
.footer-logo p {
  color: #ccc;
  margin-top: 10px;
}

/* 🔹 Columns */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.footer-column h3 {
  color: #00bfff;
  margin-bottom: 12px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: 6px;
}
.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}
.footer-column ul li a:hover {
  color: #fff;
}

/* 🔹 Social Icons */
.social-links a {
  font-size: 1.4rem;
  margin-right: 10px;
  color: #ccc;
  transition: 0.3s;
}
.social-links a:hover {
  color: #fff;
}

/* 🔹 Bottom Section */
.footer-bottom {
  border-top: 1px solid #2b3f4a;
  margin-top: 40px;
  padding-top: 15px;
}
.footer-bottom p {
  margin-bottom: 10px;
  color: #aaa;
}
.payment-icons img {
  width: 50px;
  margin: 0 6px;
  filter: brightness(0.9);
  transition: 0.3s;
}
.payment-icons img:hover {
  filter: brightness(1);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .newsletter {
    flex-direction: column;
    width: 100%;
  }
  .newsletter input {
    width: 90%;
  }
  .newsletter button {
    width: 50%;
  }
}

/* mobile navbar */


