/* Обновленные стили футера - еще более компактный */
.footer-compact {
  position: relative;
  padding: 25px 15px !important;
  background-color: #2f80ed;
  color: #fff;
  flex-shrink: 0;
}

.footer-compact .footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 18px !important;
}

.footer-compact .footer-logo img {
  max-height: 48px !important;
  margin-bottom: 8px !important;
}

.footer-compact .footer-description {
  font-size: 0.8rem !important;
  line-height: 1.3 !important;
}

.footer-compact .footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px !important;
  border-top: 1px solid #fff;
  padding-top: 12px !important;
  font-size: 0.75rem !important;
}

.footer-compact .footer-links ul, 
.footer-compact .footer-contacts ul {
  list-style: none;
  padding: 0;
  margin: 0 !important;
  font-size: 0.75rem !important;
}

.footer-compact .footer-links li, 
.footer-compact .footer-contacts li {
  margin-bottom: 5px !important;
}

.footer-compact .footer-links a, 
.footer-compact .footer-contacts a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.75rem !important;
  line-height: 1.3 !important;
}

.footer-compact .footer-links a:hover, 
.footer-compact .footer-contacts a:hover {
  color: #ffcc00;
}

.footer-compact .footer-socials a {
  margin-right: 8px !important;
  display: inline-block;
  color: #ddd;
  font-size: 0.9rem !important;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-compact .footer-socials a:hover {
  transform: scale(1.1);
  color: #ffcc00;
}

@media (max-width: 768px) {
  .footer-compact {
    padding: 20px 12px !important;
  }
  
  .footer-compact .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px !important;
    padding-top: 10px !important;
  }
  
  .footer-compact .footer-logo img {
    max-height: 35px !important;
  }
  
  .footer-compact .footer-links li, 
  .footer-compact .footer-contacts li {
    margin-bottom: 3px !important;
  }
}
