/* Footer */
.footer {
  background: #1f1d36;
  color: #fff;
  padding: 3rem 1.5rem 1rem;
  font-family: "Inter", sans-serif;
}

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

.footer-about {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-logo {
  height: 65px;
  width: auto;
  display: inline-block;
}

.footer-brand i {
  color: #60a5fa;
}

.footer-about p {
  color: #9ca3af;
  line-height: 1.6;
  max-width: 28rem;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon.bg-linkedin {
  background-color: #0a66c2;
}

.social-icon.bg-instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.social-icon.bg-youtube {
  background-color: #ff0000;
}

.social-icon.bg-telegram {
  background-color: #0088cc;
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icon i {
  font-size: 1.2rem;
  color: white;
  transition: color 0.3s ease;
}

.footer-links {
  flex: 1 1 200px;
}

.footer-links h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
  color: #fff;
}

.partners-section {
  border-top: 1px solid #374151;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

.partners-section p {
  color: #9ca3af;
  font-size: 0.875rem;
}

.partner-link {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.partner-link:hover {
  color: #93bbfd;
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.875rem;
  margin: 0;
}

.developer-credit {
  font-size: 0.875rem;
  color: #9ca3af;
  text-align: right;
}

.developer-credit a {
  color: white;
  text-decoration: none;
  margin-left: 0.25rem;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.developer-credit a:hover {
  color: #60a5fa;
  cursor: pointer;
}

/* Mobile Footer */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-social {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-brand {
    border: none;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .developer-credit {
    text-align: center;
  }
}

