/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: transparent;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    font-size: 26px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    background: #25d366;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(18, 140, 126, 0.3);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-icon {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.whatsapp-icon-inline {
  width: 18px;
  height: 18px;
}

.whatsapp-float:hover a {
    color: #fff;
    background: #128c7e;
    box-shadow: 0 14px 32px rgba(18, 140, 126, 0.38);
    transform: translateY(-3px) scale(1.04);
}
