/* Kankacım, Hızlı Erişim Butonları - Yanarlı Dönerli Tasarım */

.quick-actions-container {
    position: fixed;
    bottom: 30px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Butonlar arası boşluk */
    z-index: 9999; /* Her şeyin en üstünde dursun */
    align-items: center;
}

/* Genel Buton Stili */
.quick-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid white; /* Beyaz çerçeve, patlaması için */
}

.quick-btn:hover {
    transform: scale(1.1); /* Üzerine gelince büyüsün */
}

/* --- WHATSAPP BUTONU --- */
.btn-whatsapp {
    background-color: #25D366;
    /* Yanıp sönme animasyonu */
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* --- ARAMA BUTONU --- */
.btn-call {
    background-color: #007bff; /* Mavi veya Kırmızı (#d50000) yapabiliriz, Mavi dikkat çeker */
    animation: pulse-blue 2s infinite;
    animation-delay: 1s; /* WhatsApp ile senkron olmasın, sırayla yansın */
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

/* --- YUKARI ÇIK BUTONU --- */
.btn-scroll-top {
    background-color: #333; /* Koyu gri */
    font-size: 20px;
    width: 45px; /* Diğerlerinden tık küçük olsun */
    height: 45px;
    opacity: 0; /* Başlangıçta gizli */
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-scroll-top:hover {
    background-color: #d50000; /* Hoverda sitemizin kırmızısı olsun */
    transform: translateY(-5px);
}

/* Tooltip (Baloncuk) Yazıları - Opsiyonel */
.quick-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    font-family: sans-serif;
}

.quick-btn:hover::before {
    opacity: 1;
}

/* Mobilde tooltipleri gizleyelim, kalabalık etmesin */
@media (max-width: 768px) {
    .quick-btn::before { display: none; }
    
    .quick-actions-container {
        bottom: 20px;
        right: 15px;
        gap: 12px;
    }
    
    .quick-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}