.footer {
  background: rgba(7, 11, 35, 0.9);
  border-top: 1px solid #1f2937;
  margin-top: 5rem;
  position: relative;
  z-index: 10;
  color: #ccc;
  font-family: "Inter", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .footer-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-desc {
  color: #9ca3af;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  max-width: 400px;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
}
.footer-socials a {
  color: #9ca3af;
  transition: color 0.3s;
}
.footer-socials a:hover {
  color: #c084fc;
}
.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}
.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #c084fc;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 0.8rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  color: #6b7280;
}

@media (min-width: 768px) {

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer-contact {
  display: flex;
  gap: 1rem;
}
.footer-contact a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact a:hover {
  color: #c084fc;
}

@media (max-width: 480px) {
  .footer {
    margin-top: 0.8rem;
  }
}

@media (max-width: 768px) {
  .footer {
    margin-top: 1rem;
  }
}
