/* WhatsApp Destek Butonu Stili */
.wa-support-button {
    position: fixed;
    bottom: 20px;
    padding: 10px 15px;
    border-radius: 50px;
    color: white;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.wa-support-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
    animation: none;
}

.wa-support-button:focus,
.wa-support-button:visited {
    color: white;
    text-decoration: none;
    outline: none;
}

.wa-support-right {
    right: 20px;
}

.wa-support-left {
    left: 20px;
}

.wa-support-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    margin-right: 8px;
}

.wa-support-text {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* Responsive Ayarları */
@media (max-width: 767px) {
    .wa-support-button {
        bottom: 15px;
        padding: 8px;
        border-radius: 50%;
    }
    
    .wa-support-right {
        right: 15px;
    }
    
    .wa-support-left {
        left: 15px;
    }
    
    .wa-support-text {
        display: none;
    }
    
    .wa-support-icon {
        margin-right: 0;
    }
}

/* Animasyon Efekti */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}