.footer {
  font-family: Arial, sans-serif;
  color: #000;
  width: 100%;
}

/* Bagian atas */
.footer-atas {
  background: black;
  border-radius: 0 50px 0 0;
  width: 50%;
  color: white;
  position: relative;
}

.footer-desc {
  margin-left: 90px;
  transform: translateY(30px);
}

.footer-desc h1 {
  font-size: 24px;
  color: #ccc;
}

.footer-desc p {
  font-size: 18px;
  color: #ccc;
}

/* Container utama */
.footer-top {
  background: black;
  border-radius: 0 50px 0 0;
  padding: 90px 80px;
}

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

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: white;
  margin-left: 90px;
}

.footer-column h3 {
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

.footer-column p {
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
  font-size: 18px;
}

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

.footer-column ul li {
  margin: 5px 0;
}

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

.footer-column ul li a:hover {
  color: #ccc;
}

/* Bagian bawah */
.footer-bottom {
  border-top: 1px solid white;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: black;
}

.footer-bottom p {
  color: white;
  text-align: center;
  font-size: 0.9rem;
}

/* --------- RESPONSIVE BREAKPOINTS --------- */
@media (max-width: 1024px) {
  .footer-top {
    padding: 60px 40px;
  }

  .footer-logo {
    margin-left: 0;
    text-align: center;
    display: block;
  }

  .footer-desc {
    margin-left: 0;
    text-align: center;
    transform: none;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .footer-top {
    padding: 40px 20px;
  }

  .footer-desc h1 {
    font-size: 20px;
  }

  .footer-desc p,
  .footer-column p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .footer-top {
    padding: 30px 15px;
  }

  .footer-desc h1 {
    font-size: 18px;
  }

  .footer-desc p,
  .footer-column p {
    font-size: 14px;
  }

  .footer-logo {
    font-size: 1.2rem;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}
