/* WhatsApp İkon Ana Yapısı */
.whatsapp-pure-icon {
    position: fixed;
    bottom: 9%; /* Biraz daha yukarı aldım, daha havalı durur */
    right: 23px;
    background-color: #25d366; /* WhatsApp Yeşili */
    color: #fff !important;
    width: 70px; /* DAHA BÜYÜK: 70px idealdir */
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px; /* İkonun büyüklüğü */
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Yaylanma efekti */
}

/* Pars Master Hover: Turuncu Patlaması */
.whatsapp-pure-icon:hover {
    background-color: #f97316; /* Senin Turuncu rengin! */
    transform: scale(1.15) rotate(15deg); /* Hem büyür hem hafif döner */
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5);
    color: #fff;
}

/* Hafif bir nabız (Pulse) efekti - Dikkat çekmesi için */
.whatsapp-pure-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: inherit;
    opacity: 0.5;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Mobil Ayarı */
@media (max-width: 768px) {
    .whatsapp-pure-icon {
        width: 60px;
        height: 60px;
        font-size: 32px;
        bottom: 25px;
        right: 25px;
    }
}