/* -------------------------------------------
   SOL ALT KÖŞE HIZLI İLETİŞİM (NEON STİL)
--------------------------------------------- */
.bottom-sticky-contact {
    position: fixed;
    left: 20px;
    bottom: 25px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-btn {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 22px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Telefon Stili (Kırmızı Neon) */
.contact-btn.phone-btn {
    background: radial-gradient(circle, rgba(239, 35, 60, 1) 0%, rgba(150, 2, 25, 1) 100%);
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 20px rgba(217, 4, 41, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.4);
}

/* WhatsApp Stili (Yeşil Neon) */
.contact-btn.whatsapp-btn {
    background: radial-gradient(circle, rgba(37, 211, 102, 1) 0%, rgba(18, 140, 126, 1) 100%);
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Yanıp Sönen (Pulse) Dış Halkalar */
.btn-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: contactRingPulse 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    pointer-events: none;
}

.phone-btn .btn-ring {
    border: 2px solid rgba(217, 4, 41, 0.85);
}

.whatsapp-btn .btn-ring {
    border: 2px solid rgba(37, 211, 102, 0.85);
}

@keyframes contactRingPulse {
    0% { transform: scale(1); opacity: 0.9; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Hover Büyüme ve Parlama */
.contact-btn:hover {
    transform: scale(1.12) translateY(-2px);
}

.phone-btn:hover {
    box-shadow: 0 0 30px rgba(239, 35, 60, 1), inset 0 0 12px rgba(255, 255, 255, 0.6);
}

.whatsapp-btn:hover {
    box-shadow: 0 0 30px rgba(37, 211, 102, 1), inset 0 0 12px rgba(255, 255, 255, 0.6);
}

/* Sağa Açılan Şık Bilgi Kutucuğu (Tooltip) */
.contact-tooltip {
    position: absolute;
    left: 62px;
    top: 50%;
    transform: translateY(-50%) translateX(-8px);
    background: rgba(13, 17, 23, 0.92);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.contact-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent rgba(13, 17, 23, 0.92) transparent transparent;
}

.contact-btn:hover .contact-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Mobil Düzeltmeleri */
@media (max-width: 768px) {
    .bottom-sticky-contact {
        left: 15px;
        bottom: 20px;
        gap: 10px;
    }

    .contact-btn {
        width: 44px;
        height: 44px;
        font-size: 19px;
    }

    .contact-tooltip {
        display: none; /* Mobilde dokunmatik ekranlar için alan daralmasın diye tooltip gizlenir */
    }
}