.custom-footer {
  background-color: #111;
  color: #eee;
  padding: 40px 20px;
  font-size: 14px;
}

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

.footer-col {
  flex: 1 1 250px;
  min-width: 220px;
}

.footer-col h4 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-col a {
  color: #bbb;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col ul {
  list-style: disc inside;
  padding-left: 0;
  margin: 0;
}

.footer-social {
  margin-top: 10px;
  display: flex;
  gap: 12px;
}

.footer-social .social-icon img {
  width: 20px;
  height: 20px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.footer-social .social-icon:hover img {
  filter: grayscale(0%);
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #777;
  font-size: 13px;
}

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

.footer-logo img {
  max-width: 180px;
  height: 100px;
  margin-bottom: 10px;
}


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

  .footer-col {
    margin-bottom: 30px;
  }

  .footer-social {
    justify-content: center;
		}
		footer-logo img {
		max-width: 180px;
		height: 100px;
	}

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

.scroll-cta {
  display: none; /* default: hidden */
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #00b36a;
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
}
.scroll-cta.show {
  display: inline-block;
}


/* Container #over-action */
#over-action {
  max-width: 480px;
  margin: 40px auto;
  padding: 24px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', sans-serif;
}

/* Label */
#over-action label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}

/* Input dan Textarea */
#over-action input[type="text"],
#over-action input[type="email"],
#over-action input[type="tel"],
#over-action textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.2s;
}

#over-action input:focus,
#over-action textarea:focus {
  border-color: #2B6CB0;
  outline: none;
}

/* Tombol submit */
#over-action button[type="submit"] {
  background-color: #2B6CB0;
  color: #fff;
  border: none;
  padding: 14px;
  width: 100%;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#over-action button[type="submit"]:hover {
  background-color: #224c88;
}

/* Responsive */
@media (max-width: 600px) {
  #over-action {
    padding: 20px;
  }

  #over-action button {
    font-size: 15px;
    padding: 12px;
  }
}





