.custom-footer {
  background-color: #101010;
  color: #ddd;
  padding: 50px 20px 20px;
  font-size: 14px;
  font-family: 'Arial', sans-serif;
}

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

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

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

.footer-col a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 14px;
}

.footer-social .social-icon img {
  width: 24px;
  height: 24px;
  filter: grayscale(80%);
  transition: all 0.3s ease;
  opacity: 0.8;
}

.footer-social .social-icon:hover img {
  filter: none;
  transform: scale(1.1);
  opacity: 1;
}

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

.footer-logo img {
  max-width: 160px;
  height: auto;
  margin-bottom: 15px;
}

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

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

  .footer-logo img {
    max-width: 140px;
  }
}



/* 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: #FFB024;
  color: #2B6CB0;
  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;
}