.whatsapp-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Profesyonel Mesaj Balonu 💬 */
.whatsapp-badge {
    background: #075e54; /* WhatsApp Koyu Yeşil */
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    white-space: nowrap;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    animation: badge-float 3s ease-in-out infinite;
}

/* Balonun altındaki küçük ok ucu ▾ */
.whatsapp-badge::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #075e54;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-ring 2s infinite;
}

/* Daha şık bir halka animasyonu */
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0px rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0px rgba(37, 211, 102, 0); }
}

.whatsapp-button img {
    width: 38px;
    height: 38px;
}

.whatsapp-button:hover {
    transform: scale(1.1) rotate(5deg);
}