.footer {
  background: transparent;
  padding: 60px 20px 30px;
}

.footer-top-border {
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ffdd57, var(--primary));
  border-radius: 3px;
  margin-bottom: 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.footer-logo span {
  color: var(--primary);
  font-family: 'supershiny';
}

.footer-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 260px;
}

.footer-col h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  transition: 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

/* --- Social icons --- */
.footer-socials {
  display: flex;
  gap: 12px;
}

.icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1d;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.icon:hover {
  background: var(--primary);
  color: var(--text-color);
}

/* --- Footer bottom --- */
.footer-bottom {
  border-top: 1px solid #1f1f22;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: var(--text-color);
  font-size: 14px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-col {
    width: 100%;
  }

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

  .footer-bottom {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 40px 15px 25px;
  }

  .footer-col h3 {
    margin-top: 15px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}