/* Floating WhatsApp button (left corner) */
.wa-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(37,211,102,0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.wa-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(37,211,102,0.25);
}

.wa-float svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}

/* Small screens: slightly smaller and closer to edge */
@media (max-width: 480px) {
  .wa-float {
    left: 12px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }
  .wa-float svg {
    width: 22px;
    height: 22px;
  }
}

/* Footer logo styling: used in the left footer widget above the description */
.footer-logo {
  display: block;
  width: 120px;
  max-width: 100%;
  height: auto;
  margin-bottom: 0px;
  margin-top: 10px;
}

@media (max-width: 767px) {
  .footer-logo {
    width: 100px;
    margin-bottom: 0px;
  }
}

/* Larger, centered footer logo variant used only inside the site footer */
.wpo-site-footer .footer-logo {
  width: 200px;
  margin-left: 0px;
  margin-right: 0px;
  display: block;
  margin-bottom: 0px; /* small gap between logo and description */
}

@media (max-width: 767px) {
  .wpo-site-footer .footer-logo {
    width: 130px;
  }
}

/* Reduce paragraph top margin to bring description closer to the logo */
.wpo-site-footer .about-widget p {
  margin-top: -30px;
  margin-bottom: 0px;
}
