/* WhatsApp İkon Stilleri - Modern Tasarım */
.wap-whatsapp-icon {
    position: fixed;
    z-index: 9999;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 4px 12px rgba(37, 211, 102, 0.3));
}

.wap-whatsapp-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4),
                0 4px 8px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 12px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.wap-whatsapp-icon a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.wap-whatsapp-icon a:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5),
                0 6px 12px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.wap-whatsapp-icon a:hover::before {
    width: 300%;
    height: 300%;
}

.wap-whatsapp-icon a:active {
    transform: scale(1.05) rotate(0deg);
}

.wap-whatsapp-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Pozisyonlar */
.wap-position-bottom-right {
    bottom: 25px;
    right: 25px;
}

.wap-position-bottom-left {
    bottom: 25px;
    left: 25px;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .wap-whatsapp-icon {
        bottom: 20px !important;
        filter: drop-shadow(0 6px 16px rgba(37, 211, 102, 0.4));
    }
    
    .wap-position-bottom-right {
        right: 20px;
    }
    
    .wap-position-bottom-left {
        left: 20px;
    }
    
    .wap-whatsapp-icon a:hover {
        transform: scale(1.1) rotate(3deg);
    }
}

/* Animasyon - Pulse Efekti */
@keyframes wap-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7),
                    0 8px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0),
                    0 8px 24px rgba(37, 211, 102, 0.4);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0),
                    0 8px 24px rgba(37, 211, 102, 0.4);
    }
}

.wap-whatsapp-icon a {
    animation: wap-pulse 3s infinite;
}

/* Hover durumunda animasyonu durdur */
.wap-whatsapp-icon a:hover {
    animation: none;
}

/* Yükleme animasyonu */
@keyframes wap-fade-in {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.wap-whatsapp-icon {
    animation: wap-fade-in 0.6s ease-out;
}

