/* 플로팅 상담 버튼 스타일 */
.floating-consultation {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-btn i {
    color: white;
    font-size: 24px;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.floating-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.floating-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.floating-item i {
    margin-right: 10px;
    font-size: 18px;
}

.floating-item.kakao {
    color: #391B1B;
}

.floating-item.kakao i {
    color: #FFE812;
}

.floating-item.call {
    color: #333;
}

.floating-item.call i {
    color: #007bff;
}

.floating-item.consultation {
    color: var(--primary);
}

.floating-item:hover {
    background: #f5f5f5;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .floating-consultation {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn i {
        font-size: 20px;
    }

    .floating-menu {
        bottom: 60px;
    }

    .floating-item {
        padding: 10px 16px;
    }
}