.footer {
  background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  width: 100%;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand {
  max-width: 350px;
}

.logo1 img {
  height: 38px; /* slightly reduced */
  width: auto;
  object-fit: contain;
  cursor: pointer;
  margin-bottom: 30px;
}

/* DESCRIPTION – CLEAN TWO-LINE LOOK */
.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.9rem; /* slightly reduced */
}

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

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.social-link:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

/* TITLES – SLIGHTLY SMALLER */
.footer-title {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

/* LINKS – NEAT & COMPACT */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-left: 0;
  margin-top: 0;
}

.footer-links li {
  line-height: 1.55;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem; /* reduced */
  display: block;
  transition: background 0.3s ease;
}

/* GRADIENT TEXT HOVER */
.footer-links a:hover {
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--primary-blue) 60%, transparent),
    color-mix(in srgb, var(--primary-pink) 60%, transparent)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.footer-contact {
  display: flex;
  justify-content: space-between;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 0.95rem;
}

.contact-item a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.footer-copyright {
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 30px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

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

  .footer-brand {
    max-width: 100%;
  }

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

  .footer-contact {
    flex-direction: column;
    gap: 1rem;
  }
}
.footer-interactive {
  pointer-events: auto;
}
