#site-footer {
  position: relative;
  padding: 80px 0 40px 0;
  border-top: 1px dashed #d9d9d9;
  color: #555;
  font-family: "Plus Jakarta Sans", sans-serif;
}

#site-footer .dot-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 270px;
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr auto auto;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: #555;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  position: relative;
  text-decoration: none;
  color: #555;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-col ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #22682a;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.footer-col ul li a {
  font-weight: 600; /* sudah semi bold dari awal */
}

.footer-col ul li a:hover {
  color: #22682a;
}

.footer-col ul li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.branding .footer-logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.branding .footer-logo span {
  color: rgba(255, 255, 255, 0.85);
}

.branding p {
  color: #555;
  line-height: 1.6;
  max-width: 300px;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #555;
}

.footer-col.get-in-touch a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #555;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-col.get-in-touch a:hover {
  color: #22682a;
  transform: translateX(4px);
}

.footer-socials a {
  margin-left: 20px;
  text-decoration: none;
  color: #555;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #0f172a;
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 24px; /* responsive, kayak header */
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
