/* ===== FOOTER DESIGN ===== */

.footer {
  background: #0f172a;
  color: #fff;
  padding: 60px 8% 20px;
  margin-top: 80px;
  position: relative;
}

/* Top Gradient Line */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #FFC107, #ff5722);
}

/* Container */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* Column */
.footer-col {
  flex: 1;
  min-width: 220px;
}

/* Logo */
.footer-logo {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Headings */
.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #FFC107;
  display: block;
  margin-top: 5px;
}

/* Links */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #FFC107;
  padding-left: 5px;
}

/* Social */
.social-links a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  color: #cbd5e1;
  transition: 0.3s;
}

.social-links a:hover {
  color: #FFC107;
  padding-left: 5px;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  color: #94a3b8;
  border-top: 1px solid #1e293b;
  margin-top: 40px;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-col h3::after {
    margin: 8px auto 0;
  }
  
  .footer-col ul li a:hover,
  .social-links a:hover {
    padding-left: 0;
  }
}