/* === General Footer === */
.footer {
  background-color: #87ceeb;
  color: #191970;
  padding: 50px 30px;
  width: 100%;
  font-family: 'Inria Sans', Arial, sans-serif;
}

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

.footer-section {
  flex: 1;
  min-width: 200px;
  padding: 0 10px;
  /* Padding default untuk semua kolom */
}

/* === KOLOM 1 BARU: LOGO === */
#footer-logo-container {
  flex: 0 0 80px;
  min-width: 80px;
  padding-left: 0;
  padding-right: 30px;
  /* Tetap beri padding kanan agar tidak mepet kolom 2 */
}

#footer-logo-container .footer-logo {
  width: 100%;
  height: auto;
}

/* === KOLOM 2 BARU: IDENTITAS === */
#footer-identitas {
  flex: 2;
  min-width: 250px;
}

#footer-identitas .footer-title-identitas {
  font-family: Inter, var(--default-font-family);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #000;
  margin-top: 0;
}

#footer-identitas .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

#footer-identitas .footer-contact-icon {
  font-size: 16px;
  width: 16px;
  text-align: center;
  margin-right: 12px;
  margin-top: 4px;
}

#footer-identitas .contact-text {
  font-size: 15px;
  line-height: 1.5;
  color: #000;
}

/* === KOLOM 3 & 4: LINKS & CABANG === */
.footer-section .footer-title {
  font-family: 'Inknut Antiqua', var(--default-font-family);
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #191970;
  border-bottom: 2px solid #000000;
  padding-bottom: 10px;
  display: inline-block;
}

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

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

.footer-section ul li a {
  color: #191970;
  text-decoration: none;
  font-family: 'Inria Sans', var(--default-font-family);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section ul li a::before {
  content: '>';
  margin-right: 12px;
  color: #000000;
  font-weight: bold;
}

.footer-section ul li a:hover {
  color: #ffff;
}

/* === COPYRIGHT === */
.footer-copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #00000040;
  font-size: 14px;
  color: #191970;
}

/* === IKON MEDIA SOSIAL === */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icons a {
  display: block;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.social-icons a i {
  font-size: 24px;
  vertical-align: middle;
}

.social-icons a:hover {
  opacity: 0.8;
  color: #F3CA3E;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .footer-section,
  #footer-logo-container,
  #footer-identitas {
    width: 100%;
    margin: 10px 0;
    padding: 0;
    min-width: unset;
    flex: 1 1 100%;
  }

  #footer-logo-container {
    width: 50px;
  }

  #footer-identitas,
  #footer-links,
  #footer-cabang {
    text-align: left;
  }

  .footer-section .footer-title {
    font-size: 16px;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .footer-copyright {
    margin-top: 20px;
    padding-top: 20px;
  }
}