:root {
  --pr-color: #285dc0;
}
/* === FOOTER STYLING === */
.custom-footer {
  background: linear-gradient(120deg, #1a1a1a, #101010);
  color: #fff;
  padding: 60px 60px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer-left,
.footer-right {
  flex: 1 1 45%;
  min-width: 280px;
}

.footer-right {
  margin-left: 20px;
}

.footer-logo {
  border-radius: 5px;
  margin-left: 70px;
  width: 140px;
  margin-bottom: 8px;
}

.footer-left h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 15px 0 10px;
}

.footer-left h2 span {
  color: var(--pr-color);
}

.footer-right h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* === CONTACT INFO === */
.contact-info {
  list-style: none;
  padding: 0;
  font-size: 14px;
  color: #ccc;
  line-height: 1.8;
}

.contact-info li {
  display: flex;
  align-items: center;
  /* default untuk WA & email */
  margin-bottom: 12px;
}

.contact-info li:first-child {
  align-items: flex-start;
  /* maps icon sejajar dengan baris pertama */
}

.contact-info i {
  flex-shrink: 0;
  margin-right: 8px;
  color: var(--pr-color);
  line-height: 1.2;
  font-size: 14px;
  min-width: 18px;
  text-align: center;
  margin-top: 2px;
}

.alamat-wrap {
  display: flex;
  flex-direction: column;
}

.alamat-pertama {
  line-height: 1.2;
}

.alamat-kedua {
  margin-top: 0;
  line-height: 1.2;
}

/* Link WhatsApp & email */
.contact-info a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #ff0000;
}

/* Sosial icon */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 18px;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ff0000;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

/* === RESPONSIVE HP ≤480px === */
@media (max-width: 480px) {

  /* Footer container */
  .custom-footer {
    padding: 40px 25px 20px;
    font-size: 12px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    /* keseluruhan footer di tengah */
    padding: 0 20px;
    gap: 20px;
  }

  /* Kiri (logo + nama PT) */
  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-left: 0;
    text-align: center;
  }

  .footer-left .footer-logo {
    margin: 0 auto;
    width: 110px;
    height: auto;
  }

  .footer-left h2 {
    font-size: 14px;
    margin: 0 auto;
    text-align: center;
  }

  /* Kanan */
  .footer-right {
    text-align: left;
    width: 100%;
    margin-left: 0;
  }

  .footer-right h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .contact-info {
    font-size: 12px;
    line-height: 1.5;
  }

  .contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    white-space: normal;
  }

  .contact-info i {
    flex-shrink: 0;
    margin-right: 8px;
    line-height: 1.2;
  }

  /* Sosial icon */
  .social-icons {
    justify-content: flex-start;
    margin-top: 15px;
  }

  .social-icons a {
    font-size: 16px;
    margin-right: 10px;
  }

  /* Footer bottom */
  .footer-bottom {
    font-size: 11px;
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
  }
}