.quick-contact-bar {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.quick-btn i {
    z-index: 2;
}

.quick-btn .btn-label {
    position: absolute;
    left: 60px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 500;
}

.quick-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.quick-btn:hover .btn-label {
    opacity: 1;
    transform: translateX(0);
}

/* Renkler */
.quick-btn.btn-call {
    background: linear-gradient(135deg, #63b5f5, #1a5a82);
}

.quick-btn.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.quick-btn.btn-location {
    background: linear-gradient(135deg, #FF4B2B, #FF416C);
}

/* Mobil Düzenlemeler */
@media (max-width: 768px) {
    .quick-contact-bar {
        left: 15px;
        bottom: 15px;
        gap: 10px;
    }
    .quick-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    .quick-btn .btn-label {
        display: none; /* Mobilde yazılar görünmesin */
    }
}
