.footer {
  background: #94949b;
  color: white;
  padding: 60px 8% 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footerimg {
  width: 220px;
  padding: 10px;
}

/* Titles */
.footer h3 {
  color: #ffffff;
  margin-bottom: 18px;
  border-bottom: 2px solid #db1a1a;
  padding-bottom: 12px;
  display: inline-block;
  font-size: 18px;
}

/* About */
.footer-about p {
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 14px;
}

/* Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

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

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3b82f6;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #2563eb;
  transform: translateY(-3px);
}

/* Bottom Footer */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 25px;
  color: #cbd5e1;
  font-size: 14px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media (min-width: 1400px) {
  .footer {
    padding: 80px 10% 40px;
  }
  
  .footer-container {
    gap: 50px;
  }
  
  .footerimg {
    width: 250px;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .footer {
    padding: 50px 6% 25px;
  }
  
  .footer-container {
    gap: 35px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .footer {
    padding: 45px 5% 20px;
  }
  
  .footer h3 {
    font-size: 17px;
  }
  
  .footer-about p,
  .footer-links a {
    font-size: 13px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer {
    padding: 40px 4% 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footerimg {
    width: 180px;
    margin: 0 auto;
  }
  
  .footer h3 {
    font-size: 16px;
    border-bottom-width: 2px;
  }
  
  .footer-about p {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    font-size: 13px;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .social-icons a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  
  .footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    font-size: 13px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .footer {
    padding: 35px 3% 15px;
  }
  
  .footerimg {
    width: 160px;
  }
  
  .footer h3 {
    font-size: 15px;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }
  
  .footer-about p,
  .footer-links a {
    font-size: 12px;
  }
  
  .social-icons a {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
  
  .footer-bottom {
    font-size: 12px;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .footer {
    padding: 30px 3% 12px;
  }
  
  .footerimg {
    width: 140px;
  }
  
  .footer h3 {
    font-size: 14px;
  }
}
