/* ==== Floating WhatsApp button ==== */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
}
.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 26px rgba(0,0,0,.3);
    color: #fff !important;
}
.wa-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}
.wa-float::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: #25D366;
    opacity: .5;
    z-index: -1;
    animation: waPulse 1.8s ease-out infinite;
}
@keyframes waPulse {
    0%   { transform: scale(1);   opacity: .5; }
    100% { transform: scale(1.55); opacity: 0;  }
}
@media (max-width: 576px) {
    .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
    .wa-float svg { width: 28px; height: 28px; }
}

/* ==== Team list (text only) ==== */
.team-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.team-list li:last-child { border-bottom: none; }
.team-list h4 {
    margin: 0;
    font-weight: 600;
    letter-spacing: .3px;
}
