/* ================= ENHANCED FOOTER ================= */
footer {
  background: #f8f9fa;
  color: #333;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #007bff, #6610f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: #666;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #007bff, #6610f2);
}

.footer-link {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #007bff;
  transform: translateX(5px);
}

.footer-social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.1);
}

.social-icon:hover {
  background: linear-gradient(135deg, #007bff, #6610f2);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.contact-item {
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.footer-bottom {
  border-color: rgba(0,0,0,0.1) !important;
}

.footer-bottom-link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-bottom-link:hover {
  color: #007bff;
}

.copyright-text {
  color: #333 !important;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-social-links {
    justify-content: center;
    margin-top: 20px;
  }
  
  .footer-bottom-links {
    text-align: center;
    margin-top: 15px;
  }
  
  .footer-bottom-links .mx-2 {
    display: none;
  }
  
  .footer-bottom-links a {
    display: block;
    margin: 5px 0;
  }
}

/* ================= FOOTER ================= */
footer {
  font-size: 14px;
  background: #f8f9fa;
}

.social-links a {
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #007bff !important;
  transform: translateY(-2px);
}
