/* Footer */
footer {
  background: #000;
  border-top: 1px solid rgba(139, 92, 246, 0.3);
  padding: 1.5rem 0 1rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand .logo img {
  height: 1.5rem;
  width: auto;
}

.footer-brand .logo-text {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
}

.footer-brand .logo-text .hexa {
  color: #fff;
}

.footer-brand .logo-text .on {
  color: #ec4899;
  font-weight: 700;
}

.footer-brand p {
  color: #d1d5db;
  line-height: 1.6;
  margin-top: 1rem;
}

.footer-links h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}

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

.footer-bottom {
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
}

.footer-bottom a {
  color: #8b5cf6;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Social Media Icons */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  color: #d1d5db;
  font-size: 1.25rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #8b5cf6;
}