/* =========================================
   SABİT WHATSAPP BUTONU (HER SAYFADA GÖRÜNÜR)
========================================= */
.whatsapp-sabit-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    background-color: #25d366 !important; 
    color: white !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 35px !important;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3) !important;
    z-index: 999999 !important; /* Tüm sitenin en üstüne çıkarır */
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    animation: whatsapp-pulse 2s infinite !important;
}

.whatsapp-sabit-btn i {
    margin-top: 2px !important;
    margin-left: 2px !important;
}

.whatsapp-sabit-btn:hover {
    transform: scale(1.1) !important;
    background-color: #1ebe5d !important;
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4) !important;
    color: white !important;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobilde başparmağa daha yakın olması için ufak ayar */
@media (max-width: 1024px) {
    .whatsapp-sabit-btn {
        bottom: 20px !important;
        right: 20px !important;
        width: 55px !important;
        height: 55px !important;
        font-size: 32px !important;
    }
}