/**
 * Professional Footer
 * Corporate-style footer with multiple columns
 */

.professional-footer {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  color: #333;
  margin-top: 80px;
}

.footer-main {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-col {
  margin-bottom: 30px;
}

/* Footer Brand */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 70px;
  height: auto;
}

.footer-brand h4 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.footer-description {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 25px;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
  background: #ff60c2;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 96, 194, 0.4);
}

/* Footer Titles */
.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #ff60c2;
}

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

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

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #ff60c2;
  transition: width 0.3s ease;
}

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

.footer-links a:hover::before {
  width: 100%;
}

/* Footer Bottom */
.footer-bottom {
  padding: 25px 0;
  background: rgba(0, 0, 0, 0.05);
}

.footer-copyright,
.footer-made {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.footer-made i {
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  10%, 30% {
    transform: scale(1.1);
  }
  20%, 40% {
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .footer-main {
    padding: 50px 0 30px;
  }
  
  .footer-col {
    margin-bottom: 40px;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-brand {
    justify-content: center;
  }
  
  .footer-description {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .footer-main {
    padding: 40px 0 20px;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
  
  .footer-bottom .col-md-6 {
    margin-bottom: 10px;
  }
  
  .footer-copyright,
  .footer-made {
    text-align: center !important;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer-brand h4 {
    font-size: 18px;
  }
  
  .footer-logo {
    width: 40px;
  }
  
  .footer-title {
    font-size: 14px;
  }
  
  .footer-links a {
    font-size: 13px;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
