/* --- SIFIRLAMA VE İZOLASYON --- */
.ikn-fix-left-wrapper,
.ikn-fix-left-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* --- TAŞIYICI ALAN (Sol Alt Köşe Sabitleme) --- */
.ikn-fix-left-wrapper {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column; /* Alt alta dikey sıralama */
    gap: 18px; /* Butonlar arası boşluk */
    z-index: 99998; /* Header'ın hemen altında, her şeyin üstünde */
}

/* --- BUTON ORTAK TASARIMI --- */
.ikn-fix-btn {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.ikn-fix-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: transform 0.3s ease;
}

.ikn-fix-icon svg {
    width: 100%;
    height: 100%;
}

/* Üstüne gelince buton büyüsün ve ikon hafif dönsün */
.ikn-fix-btn:hover {
    transform: scale(1.1);
}
.ikn-fix-btn:hover .ikn-fix-icon {
    transform: rotate(10deg) scale(1.05);
}

/* --- 1. WHATSAPP NEON TASARIMI --- */
.ikn-wa-btn {
    background-color: #25d366;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}
.ikn-wa-btn:hover {
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.85);
}

/* --- 2. TELEFON NEON TASARIMI (Dijital Ajans Mavisi) --- */
.ikn-phone-btn {
    background: linear-gradient(135deg, #00f0ff, #0072ff);
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.45);
}
.ikn-phone-btn:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.85);
}

/* --- YANIP SÖNEN RADAR DALGALARI (Pulse Efekti) --- */
.ikn-pulse-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: iknRadarPulse 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

/* WhatsApp Dalga Rengi */
.ikn-wa-wave { background: rgba(37, 211, 102, 0.6); animation-delay: 0s; }
.ikn-wa-wave2 { background: rgba(37, 211, 102, 0.4); animation-delay: 0.8s; }

/* Telefon Dalga Rengi */
.ikn-phone-wave { background: rgba(0, 240, 255, 0.6); animation-delay: 0.4s; }
.ikn-phone-wave2 { background: rgba(0, 114, 255, 0.4); animation-delay: 1.2s; }

/* Radar Genişleme ve Silinme Animasyonu */
@keyframes iknRadarPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* --- HOVER AÇILIR ETİKETİ (TOOLTIP) --- */
.ikn-fix-tooltip {
    position: absolute;
    left: 70px; /* Butonun sağ tarafında açılır */
    top: 50%;
    transform: translateY(-50%) translateX(-15px);
    background: #161619;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

/* Küçük Ok Detayı (Tooltip Sol Çıkıntısı) */
.ikn-fix-tooltip::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #161619;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Butonun üstüne gelince etiket kayarak görünsün */
.ikn-fix-btn:hover .ikn-fix-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* =========================================================
   MOBİL UYUM (RESPONSIVE) - TELEFONDA DA KUSURSUZ!
   ========================================================= */
@media (max-width: 768px) {
    .ikn-fix-left-wrapper {
        bottom: 20px;
        left: 20px;
        gap: 14px;
    }

    .ikn-fix-btn {
        width: 50px;
        height: 50px;
    }

    .ikn-fix-icon {
        width: 24px;
        height: 24px;
    }

    /* Mobilde parmakla basıldığında ekranda etiket takılı kalmasın diye gizledik */
    .ikn-fix-tooltip {
        display: none !important;
    }
}