/*--------------------------------------------------------------
# Modern Minimalist Footer Design
--------------------------------------------------------------*/
.footer-modern {
  background: linear-gradient(135deg, #3e4447 0%, #5a5d60 100%);
  color: #ffffff;
  padding: 50px 0 20px 0;
  position: relative;
  overflow: hidden;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff8c42, #ff7a28, #ff8c42);
  box-shadow: 0 2px 10px rgba(255, 140, 66, 0.5);
}

/* Footer Content */
.footer-modern .footer-content {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Section */
.footer-modern .footer-brand {
  text-align: left;
}

.footer-modern .footer-logo {
  max-height: 45px;
  filter: brightness(0) invert(1);
  margin-bottom: 10px;
}

.footer-modern .footer-brand h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0 5px 0;
}

.footer-modern .tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

/* Contact Info */
.footer-modern .footer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-modern .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.footer-modern .info-item i {
  color: #ff8c42;
  font-size: 16px;
  min-width: 20px;
}

/* Navigation Links */
.footer-modern .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-modern .footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-modern .footer-nav a:hover {
  color: #ff8c42;
  padding-left: 5px;
}

/* Social Media */
.footer-modern .footer-social {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}

.footer-modern .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-modern .footer-social a:hover {
  background: #ff8c42;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 140, 66, 0.5);
}

/* Footer Bottom */
.footer-modern .footer-bottom {
  padding-top: 25px;
  text-align: center;
}

.footer-modern .footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

.footer-modern .footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-modern .footer-bottom a:hover {
  color: #ff8c42;
}

/* Responsive Design */
@media (max-width: 991px) {
  .footer-modern {
    padding: 40px 0 20px 0;
  }
  
  .footer-modern .footer-brand,
  .footer-modern .footer-info,
  .footer-modern .footer-nav {
    text-align: center;
    align-items: center;
  }
  
  .footer-modern .footer-social {
    justify-content: center;
  }
  
  .footer-modern .footer-nav a:hover {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .footer-modern .footer-content {
    padding-bottom: 20px;
  }
  
  .footer-modern .footer-brand h4 {
    font-size: 20px;
  }
  
  .footer-modern .info-item {
    font-size: 13px;
  }
  
  .footer-modern .footer-nav a {
    font-size: 14px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-modern .footer-brand,
.footer-modern .footer-info,
.footer-modern .footer-nav,
.footer-modern .footer-social {
  animation: fadeInUp 0.6s ease-out;
}

.footer-modern .footer-info {
  animation-delay: 0.1s;
}

.footer-modern .footer-nav {
  animation-delay: 0.2s;
}

.footer-modern .footer-social {
  animation-delay: 0.3s;
}