.footer {
  background: #000;
  color: white;
  padding: 40px 50px 15px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.6fr;
  gap: 30px;
}

.footer-left h2 {
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 14px;
  line-height: 20px;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  background: rgba(255, 111, 111, 0.12);
  color: #ff6f6f;
}

.social-icons img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  cursor: pointer;
  transition: 0.2s;
}

.social-icons img:hover {
  opacity: 0.7;
  transform: scale(1.05);
}

.footer-nav h3 {
  margin-bottom: 10px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li {
  margin-bottom: 8px;
}

.footer-nav ul li a {
  text-decoration: none;
  color: white;
  transition: 0.2s;
}

.footer-nav ul li a:hover {
  opacity: 0.7;
}

.footer-partner h3 {
  margin-bottom: 10px;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 25px;
  margin-top: 10px;
  align-items: center;
}

.partner-logos img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.partner-logos .partner {
  display: inline-block;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: background 0.15s ease, transform 0.12s ease;
}

.partner-logos .partner:hover {
  background: rgba(255, 111, 111, 0.12);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  margin-top: 30px;
  text-align: center;
  padding-top: 10px;
  font-size: 14px;
}

/* Responsive */
@media screen and (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 30px 15px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-left h2 {
    font-size: 22px;
  }

  .footer-left p {
    font-size: 13px;
    line-height: 18px;
  }

  .footer-nav h3 {
    font-size: 16px;
  }

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

  .footer-nav ul li a {
    font-size: 14px;
  }

  .footer-partner h3 {
    font-size: 16px;
  }

  .partner-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
  }

  .partner-logos img {
    height: 50px;
    width: auto;
    object-fit: contain;
  }

  .footer-bottom {
    font-size: 12px;
    margin-top: 25px;
    padding-top: 15px;
  }
}

@media screen and (max-width: 480px) {
  .footer {
    padding: 30px 20px 10px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-left h2 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .footer-left p {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 8px;
  }

  .social-icons {
    margin-top: 12px;
    gap: 10px;
  }

  .social-link {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .footer-nav h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .footer-nav ul li {
    margin-bottom: 6px;
  }

  .footer-nav ul li a {
    font-size: 12px;
  }

  .footer-partner h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .partner-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
  }

  .partner-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
  }

  .footer-bottom {
    font-size: 11px;
    margin-top: 20px;
    padding-top: 10px;
  }
}
