/* ==================== FOOTER ==================== */
.footer {
  background: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  margin: 30px auto 40px;
  padding: 25px 40px;
  max-width: 2000px;
  width: calc(100% - 60px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.8s ease;
}

.footer:hover::before {
  left: 100%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: rgb(0, 0, 0);
  position: relative;
  z-index: 2;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-weight: 700;
  font-size: 1.5rem;
}

.footer-brand .material-symbols-outlined {
  font-size: 32px;
  color: #7f5af0;
}

.footer-logo::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  animation: logo-pulse 2s ease-in-out infinite;
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-link {
  color: #344054;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 8px 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-link .material-symbols-outlined {
  font-size: 1.15rem !important;
  color: #344054;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #6366f1;
}

.footer-link:hover .material-symbols-outlined {
  transform: scale(1.1);
  color: #6366f1;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
}

.footer-design p {
  margin: 0;
}

.footer-copy p {
  margin: 0;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #344054;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.social-link:hover {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.social-link i,
.social-link .material-symbols-outlined {
  font-size: 18px;
}

.footer-copy {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
}

.footer-copy p {
  margin: 0;
}

@media (max-width: 768px) {
  .footer {
    width: calc(100% - 30px);
    padding: 20px 25px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-links {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    width: calc(100% - 20px);
    padding: 15px 20px;
  }

  .footer-links {
    gap: 18px;
    flex-direction: column;
    align-items: center;
  }

  .footer-link {
    font-size: 14px;
  }
}
