/* Footer Styles */
.footer {
  background-color: #f8f9fa;
  padding: 60px 0 40px;
}

.footer-top {
  margin-bottom: 40px;
}

.footer-bottom {
  margin-top: 40px;
}

.footer-divider {
  height: 1px;
  background-color: #e9ecef;
  margin: 40px 0;
}

.footer-column {
  margin-bottom: 30px;
}

.footer-title {
  color: #000;
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0px;
  padding: 0px;
  padding-bottom: 30px;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu a {
  color: #000;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-menu a:hover {
  color: #333;
}

.footer-contacts {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  color: #000;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0px;
}

.contact-item a {
  color: #000;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #333;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-payments {
  display: flex;
  margin-top: 30px;
  gap: 40px;
  align-items: center;
}

.payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.footer-developer {
  margin-top: 20px;
}

.developer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.developer-text {
  font-size: 12px;
  color: #e74c3c;
  font-weight: bold;
}

.developer-icon {
  display: flex;
  align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 30px;
  }
  
  .footer-top,
  .footer-bottom {
    margin: 20px 0;
  }
  
  .footer-divider {
    margin: 20px 0;
  }
  
  .footer-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .footer-menu a,
  .contact-item {
    font-size: 13px;
  }
  
  .footer-socials {
    gap: 10px;
  }
  
  .footer-payments {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .payment-logo {
    height: 22px;
    font-size: 11px;
    min-width: 45px;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 30px 0 20px;
  }
  
  .footer-column {
    margin-bottom: 25px;
  }
  
  .footer-title {
    font-size: 15px;
    margin-bottom: 12px;
  }
  
  
  .footer-menu a,
  .contact-item {
    font-size: 12px;
  }
  
  .footer-socials {
    margin-bottom: 15px;
  }
  
  .footer-payments {
    margin-bottom: 15px;
  }
}
