.footer {
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  color: #333;
  padding: 60px 0 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7cc440 0%, #5da130 100%);
  transform: translateY(-100%);
  animation: slideDown 1s ease-out forwards;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-column {
  padding: 10px;
}

.footer-column h3 {
  color: #222;
  font-size: 1.2rem;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 10px;
  font-weight: 600;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #7cc440;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.footer-column:hover h3::after {
  transform: scaleX(1);
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #7cc440 0%, #5da130 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: 0 5px 15px rgba(124, 196, 64, 0.3);
}

.logo-circle i {
  color: white;
  font-size: 24px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #7cc440 0%, #5da130 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-about p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  /*margin-bottom: 15px;*/
  position: relative;
  padding-left: 0;
  transition: all 0.3s ease;
  padding-top: 7px;
  padding-bottom: 7px;
}

.footer-links li::before {
  content: 'chevron_right';
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 1rem;
  color: #7cc440;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links li:hover {
  padding-left: 20px;
}

.footer-links li:hover::before {
  opacity: 1;
  left: 0;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #7cc440;
  transform: translateX(5px);
}






.footer-bottom {
  background: linear-gradient(135deg, #f5f5f5 0%, #f0f0f0 100%);
  padding: 20px 0;
  margin-top: 60px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: #666;
  font-size: 0.9rem;
}


@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.appear {
  animation: appear 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Адаптивность */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
            
  .footer-bottom-container {
    flex-direction: column;
    gap: 15px;
  }
            
  .footer-links li:hover {
    padding-left: 15px;
  }
}





