/*  Begin Footer    */
footer{
    width: 1140px;
    height: 80px;
    line-height: 60px;
    font-size: 0.76em;
    color: #666666;
    text-align: center;
}

.whatsapp-float {
  position: fixed;
  bottom: 60px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: sans-serif;
  transition: all 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
  max-width: 48px;
}

.whatsapp-float:hover {
  max-width: 300px;
  padding-right: 20px;
  background-color: #1ebe5d;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.whatsapp-text {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-text {
  opacity: 1;
}


#wa-popup {
    position: fixed;
    bottom: 130px; 
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    z-index: 9999;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#wa-popup::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    border-width: 6px;
    border-style: solid;
    border-color: #25d366 transparent transparent transparent;
}

#wa-popup.hidden {
    display: none;
    transform: translateY(0);
}
/*  End Footer  */